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/image-processing.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/image-processing.scm')
| -rw-r--r-- | gnu/packages/image-processing.scm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gnu/packages/image-processing.scm b/gnu/packages/image-processing.scm index c00a287c159..c815e732ab6 100644 --- a/gnu/packages/image-processing.scm +++ b/gnu/packages/image-processing.scm @@ -984,7 +984,7 @@ including 2D color images.") (native-inputs (list pkg-config qttools-5)) (inputs - (modify-inputs (package-inputs gmic) + (modify-inputs inputs (prepend gmic qtbase-5))) (synopsis "Qt frontend for the G'MIC image processing framework") (license license:gpl3+))) @@ -995,7 +995,7 @@ including 2D color images.") (name "gmic-qt-gimp") (inputs ;; GIMP and its dependencies. - (modify-inputs (package-inputs gmic-qt) + (modify-inputs inputs (prepend gexiv2 gdk-pixbuf gegl gimp pango))) (arguments (substitute-keyword-arguments arguments @@ -1620,9 +1620,9 @@ combine the information contained in both.") ((#:phases phases #~%standard-phases) #~(modify-phases #$phases (delete 'python-sanity-check))))) - (inputs (modify-inputs (package-inputs insight-toolkit) + (inputs (modify-inputs inputs (delete "python"))) - (native-inputs (modify-inputs (package-native-inputs insight-toolkit) + (native-inputs (modify-inputs native-inputs (delete "castxml") (delete "python-numpy") (delete "swig")))))) |
