summaryrefslogtreecommitdiff
path: root/modules/home-packages/gcc.scm
diff options
context:
space:
mode:
authorTyler Murphy <tylerm@tylerm.dev>2023-09-14 08:59:36 -0400
committerTyler Murphy <tylerm@tylerm.dev>2023-09-14 08:59:36 -0400
commit0e7f944b53208151bc48f586e37724dcc682f9d0 (patch)
tree09fc07c5ce9c6ce2888d241ca621195cb79dbce4 /modules/home-packages/gcc.scm
parent867-5309 (diff)
downloaddotfiles-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.scm12
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))))
+
+