diff options
Diffstat (limited to 'modules/home-packages')
-rw-r--r-- | modules/home-packages/gcc.scm | 12 | ||||
-rw-r--r-- | modules/home-packages/virtualization.scm | 4 |
2 files changed, 14 insertions, 2 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)))) + + diff --git a/modules/home-packages/virtualization.scm b/modules/home-packages/virtualization.scm index e87b0e0..e85b0af 100644 --- a/modules/home-packages/virtualization.scm +++ b/modules/home-packages/virtualization.scm @@ -19,7 +19,7 @@ (substitute-keyword-arguments (package-arguments libvirt) ((#:phases phases) #~(modify-phases #$phases - (add-after 'install 'install-firmware + (add-after 'install 'install-uefi (lambda _ (let ((fmw (string-append #$output "/share/qemu"))) (mkdir-p fmw) @@ -38,7 +38,7 @@ (substitute-keyword-arguments (package-arguments virt-manager) ((#:phases phases) #~(modify-phases #$phases - (add-after 'install 'install-firmware + (add-after 'install 'install-uefi (lambda _ (let ((fmw (string-append #$output "/share/qemu"))) (mkdir-p fmw) |