diff options
| author | Ludovic Courtès <ludo@gnu.org> | 2026-03-11 23:12:16 +0100 |
|---|---|---|
| committer | Ludovic Courtès <ludo@gnu.org> | 2026-03-20 13:27:16 +0100 |
| commit | 1ae20f03f43a2af2bcde3751a2809fe152298d34 (patch) | |
| tree | be11f116044ab4cbc7994e2cf88ded0e21db4bbc /gnu/packages/virtualization.scm | |
| parent | 4ba653e637940b147ea5cdcf45397b8ac7f3d014 (diff) | |
gnu: Reference the inherited inputs values.
This commit was made by running this command:
sed -e's/modify-inputs (package-\([a-z-]*\)inputs [a-zA-Z0-9-]\+)/modify-inputs \1inputs/g' -i gnu/packages/*.scm
… and then reverting individual hunks where the change would trigger unbound
variable warnings or other issues (such as ‘native-inputs’ is bound in the
body of the ‘inputs’ field, but it refers to the ‘native-inputs’ thunk defined
just above).
Change-Id: I6d94819f2809313fa1fbefc61897502ee7d66fab
Diffstat (limited to 'gnu/packages/virtualization.scm')
| -rw-r--r-- | gnu/packages/virtualization.scm | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gnu/packages/virtualization.scm b/gnu/packages/virtualization.scm index c47fe8348bd..a9e3b2989a4 100644 --- a/gnu/packages/virtualization.scm +++ b/gnu/packages/virtualization.scm | |||
| @@ -690,11 +690,11 @@ server and embedded PowerPC, and S390 guests.") | |||
| 690 | ((label package output) | 690 | ((label package output) |
| 691 | (not (string=? "static" output))) | 691 | (not (string=? "static" output))) |
| 692 | (_ input))) | 692 | (_ input))) |
| 693 | (modify-inputs (package-native-inputs qemu) | 693 | (modify-inputs native-inputs |
| 694 | (delete "gettext-minimal" | 694 | (delete "gettext-minimal" |
| 695 | "python-sphinx" | 695 | "python-sphinx" |
| 696 | "python-sphinx-rtd-theme")))) | 696 | "python-sphinx-rtd-theme")))) |
| 697 | (inputs (modify-inputs (package-inputs qemu) | 697 | (inputs (modify-inputs inputs |
| 698 | (delete "libusb" | 698 | (delete "libusb" |
| 699 | "mesa" | 699 | "mesa" |
| 700 | "sdl2" | 700 | "sdl2" |
| @@ -2070,7 +2070,7 @@ client desktops. | |||
| 2070 | (package/inherit vmware-open-vm-tools | 2070 | (package/inherit vmware-open-vm-tools |
| 2071 | (name "vmware-open-vm-tools-gtk") | 2071 | (name "vmware-open-vm-tools-gtk") |
| 2072 | (inputs | 2072 | (inputs |
| 2073 | (modify-inputs (package-inputs vmware-open-vm-tools) | 2073 | (modify-inputs inputs |
| 2074 | (prepend gdk-pixbuf-xlib | 2074 | (prepend gdk-pixbuf-xlib |
| 2075 | gtk+ | 2075 | gtk+ |
| 2076 | gtkmm-3 | 2076 | gtkmm-3 |
| @@ -3840,7 +3840,7 @@ disks, resizing disks, and much more.") | |||
| 3840 | $LDFLAGS += \" -Wl,-rpath=" #$output "/lib \" | 3840 | $LDFLAGS += \" -Wl,-rpath=" #$output "/lib \" |
| 3841 | create_header")))))))))) | 3841 | create_header")))))))))) |
| 3842 | (native-inputs | 3842 | (native-inputs |
| 3843 | (modify-inputs (package-native-inputs libguestfs-minimal) | 3843 | (modify-inputs native-inputs |
| 3844 | (prepend bash-completion | 3844 | (prepend bash-completion |
| 3845 | gobject-introspection | 3845 | gobject-introspection |
| 3846 | python | 3846 | python |
| @@ -3849,7 +3849,7 @@ create_header")))))))))) | |||
| 3849 | vala | 3849 | vala |
| 3850 | xorriso))) | 3850 | xorriso))) |
| 3851 | (inputs | 3851 | (inputs |
| 3852 | (modify-inputs (package-inputs libguestfs-minimal) | 3852 | (modify-inputs inputs |
| 3853 | (prepend acl | 3853 | (prepend acl |
| 3854 | bdb | 3854 | bdb |
| 3855 | fuse | 3855 | fuse |
