diff options
Diffstat (limited to 'modules/home-packages/gcc.scm')
-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)))) + + |