diff options
-rw-r--r-- | gnu/packages/bootloaders.scm | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/gnu/packages/bootloaders.scm b/gnu/packages/bootloaders.scm index da571e38fd..e5b582efb8 100644 --- a/gnu/packages/bootloaders.scm +++ b/gnu/packages/bootloaders.scm @@ -688,9 +688,7 @@ The SUBDIR argument defaults to \"efi/Guix\", as it is also the case for "syslinux-strip-gnu-property.patch")))) (build-system gnu-build-system) (native-inputs - `(("nasm" ,nasm) - ("perl" ,perl) - ("python-2" ,python-2))) + (list nasm perl python)) (inputs `(("libuuid" ,util-linux "lib") ("mtools" ,mtools))) @@ -704,6 +702,7 @@ The SUBDIR argument defaults to \"efi/Guix\", as it is also the case for (string-append "DATADIR=" %output "/share") (string-append "MANDIR=" %output "/share/man") "PERL=perl" + "PYTHON=python3" "bios") #:strip-flags '("--strip-debug" "--enable-deterministic-archives") #:phases |