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/glib.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/glib.scm')
| -rw-r--r-- | gnu/packages/glib.scm | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gnu/packages/glib.scm b/gnu/packages/glib.scm index 2319e35bfb7..97420b855d0 100644 --- a/gnu/packages/glib.scm +++ b/gnu/packages/glib.scm | |||
| @@ -447,7 +447,7 @@ functions for strings and common data structures.") | |||
| 447 | (let ((base glib-minimal)) | 447 | (let ((base glib-minimal)) |
| 448 | (package/inherit base | 448 | (package/inherit base |
| 449 | (native-inputs | 449 | (native-inputs |
| 450 | (modify-inputs (package-native-inputs base) | 450 | (modify-inputs native-inputs |
| 451 | (prepend gobject-introspection-minimal))) | 451 | (prepend gobject-introspection-minimal))) |
| 452 | (arguments | 452 | (arguments |
| 453 | (substitute-keyword-arguments arguments | 453 | (substitute-keyword-arguments arguments |
| @@ -466,7 +466,7 @@ functions for strings and common data structures.") | |||
| 466 | (properties (alist-delete 'hidden? (package-properties base))) | 466 | (properties (alist-delete 'hidden? (package-properties base))) |
| 467 | (outputs (cons "doc" (package-outputs base))) | 467 | (outputs (cons "doc" (package-outputs base))) |
| 468 | (native-inputs | 468 | (native-inputs |
| 469 | (modify-inputs (package-native-inputs base) | 469 | (modify-inputs native-inputs |
| 470 | (append gi-docgen python-docutils))) | 470 | (append gi-docgen python-docutils))) |
| 471 | (arguments | 471 | (arguments |
| 472 | (substitute-keyword-arguments arguments | 472 | (substitute-keyword-arguments arguments |
| @@ -646,10 +646,10 @@ provide bindings to call into the C library.") | |||
| 646 | (let ((base gobject-introspection-minimal)) | 646 | (let ((base gobject-introspection-minimal)) |
| 647 | (package/inherit base | 647 | (package/inherit base |
| 648 | (native-inputs | 648 | (native-inputs |
| 649 | (modify-inputs (package-native-inputs base) | 649 | (modify-inputs native-inputs |
| 650 | (replace "glib" glib))) | 650 | (replace "glib" glib))) |
| 651 | (propagated-inputs | 651 | (propagated-inputs |
| 652 | (modify-inputs (package-propagated-inputs base) | 652 | (modify-inputs propagated-inputs |
| 653 | (replace "glib" glib) | 653 | (replace "glib" glib) |
| 654 | ;; Note: The label stays the same despite the name change. | 654 | ;; Note: The label stays the same despite the name change. |
| 655 | (replace "python-setuptools-bootstrap" python-setuptools)))))) | 655 | (replace "python-setuptools-bootstrap" python-setuptools)))))) |
| @@ -988,7 +988,7 @@ useful for C++.") | |||
| 988 | (sha256 | 988 | (sha256 |
| 989 | (base32 "0bqm9vqwhas69q6n89wd2xgxvrlkpxra13dzsx8m67hqk0jp8n2k")))) | 989 | (base32 "0bqm9vqwhas69q6n89wd2xgxvrlkpxra13dzsx8m67hqk0jp8n2k")))) |
| 990 | (propagated-inputs | 990 | (propagated-inputs |
| 991 | (modify-inputs (package-propagated-inputs glibmm) | 991 | (modify-inputs propagated-inputs |
| 992 | (replace "libsigc++" libsigc++-2))))) | 992 | (replace "libsigc++" libsigc++-2))))) |
| 993 | 993 | ||
| 994 | (define-public python-pygobject | 994 | (define-public python-pygobject |
