gnu: grub-minimal, grub-efi: Reduce unused native-inputs.

"qemu" was removed in e9c1ea84fc in the code
though the commit message claims to have removed "qemu-minimal". If that
worked, it may have been broken by switching away from labels in
b9c38f26f1.

* gnu/packages/bootloaders.scm (grub-minimal)[native-inputs]: Remove
qemu-minimal.
(grub-efi)[native-inputs]: Remove qemu-minimal.
This commit is contained in:
Vagrant Cascadian 2025-01-23 00:56:40 -08:00
parent b30669e15d
commit d320124771
No known key found for this signature in database
GPG key ID: DC518FC87F9716AA

View file

@ -323,7 +323,7 @@ menu to select one of the installed operating systems.")
(delete "lvm2" "mdadm" "fuse" "console-setup"))) (delete "lvm2" "mdadm" "fuse" "console-setup")))
(native-inputs (native-inputs
(modify-inputs (package-native-inputs grub) (modify-inputs (package-native-inputs grub)
(delete "help2man" "texinfo" "parted" "qemu" "xorriso"))) (delete "help2man" "texinfo" "parted" "qemu" "qemu-minimal" "xorriso")))
(arguments (arguments
(substitute-keyword-arguments (package-arguments grub) (substitute-keyword-arguments (package-arguments grub)
((#:tests? _ #t) #f) ((#:tests? _ #t) #f)
@ -413,7 +413,7 @@ menu to select one of the installed operating systems.")
(native-inputs (native-inputs
;; The tests are skipped in this package so we remove some test dependencies. ;; The tests are skipped in this package so we remove some test dependencies.
(modify-inputs (package-native-inputs grub) (modify-inputs (package-native-inputs grub)
(delete "parted" "qemu" "xorriso"))) (delete "parted" "qemu" "qemu-minimal" "xorriso")))
(arguments (arguments
;; TODO: Tests need a UEFI firmware for qemu. There is one at ;; TODO: Tests need a UEFI firmware for qemu. There is one at
;; https://github.com/tianocore/edk2/tree/master/OvmfPkg . ;; https://github.com/tianocore/edk2/tree/master/OvmfPkg .