diff options
| author | Tyler Murphy <tylerm@tylerm.dev> | 2023-09-14 08:59:36 -0400 |
|---|---|---|
| committer | Tyler Murphy <tylerm@tylerm.dev> | 2023-09-14 08:59:36 -0400 |
| commit | 0e7f944b53208151bc48f586e37724dcc682f9d0 (patch) | |
| tree | 09fc07c5ce9c6ce2888d241ca621195cb79dbce4 /modules/home-packages/gcc.scm | |
| parent | 867-5309 (diff) | |
| download | dotfiles-guix-0e7f944b53208151bc48f586e37724dcc682f9d0.tar.gz dotfiles-guix-0e7f944b53208151bc48f586e37724dcc682f9d0.tar.bz2 dotfiles-guix-0e7f944b53208151bc48f586e37724dcc682f9d0.zip | |
update configs and virt packages
Diffstat (limited to '')
| -rw-r--r-- | modules/home-packages/gcc.scm | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/modules/home-packages/gcc.scm b/modules/home-packages/gcc.scm new file mode 100644 index 0000000..5d6a208 --- /dev/null +++ b/modules/home-packages/gcc.scm @@ -0,0 +1,12 @@ +(define-module (home-packages gcc) + #:use-module (gnu) + #:use-module (guix packages) + #:use-module (gnu packages gcc)) + +(define-public gcc-new + (package + (inherit gcc) + (name "gcc-new") + (outputs (package-outputs gcc)))) + + |