janneke pushed a commit to branch core-packages-team in repository guix. commit 32b35406c0ca199fa5bbc52076913d49b6b756a2 Author: Janneke Nieuwenhuizen <jann...@gnu.org> AuthorDate: Tue Dec 31 12:40:28 2024 +0100
gnu: syslinux: Drop python2 dependency. * gnu/packages/bootloaders.scm (syslinux)[native-inputs]: Remove labels, use python3. [arguments]: Add PYTHON=python3 to #:make-flags. Change-Id: I4643f71d6cf91d0adcc42dad433e67398d399ff2 --- gnu/packages/bootloaders.scm | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/gnu/packages/bootloaders.scm b/gnu/packages/bootloaders.scm index 4dab7bd0b7..61514518b9 100644 --- a/gnu/packages/bootloaders.scm +++ b/gnu/packages/bootloaders.scm @@ -616,9 +616,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))) @@ -632,6 +630,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