summaryrefslogtreecommitdiff
path: root/gnu/packages/cpp.scm
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2026-03-11 23:12:16 +0100
committerLudovic Courtès <ludo@gnu.org>2026-03-20 13:27:16 +0100
commit1ae20f03f43a2af2bcde3751a2809fe152298d34 (patch)
treebe11f116044ab4cbc7994e2cf88ded0e21db4bbc /gnu/packages/cpp.scm
parent4ba653e637940b147ea5cdcf45397b8ac7f3d014 (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/cpp.scm')
-rw-r--r--gnu/packages/cpp.scm4
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/cpp.scm b/gnu/packages/cpp.scm
index cbccbf5fc5a..cba9f2a19b8 100644
--- a/gnu/packages/cpp.scm
+++ b/gnu/packages/cpp.scm
@@ -2312,7 +2312,7 @@ Google's C++ code base.")
2312 "absl_symbolize_test|absl_log_format_test"))))) 2312 "absl_symbolize_test|absl_log_format_test")))))
2313 #~()))))) 2313 #~())))))
2314 (native-inputs 2314 (native-inputs
2315 (modify-inputs (package-native-inputs base) 2315 (modify-inputs native-inputs
2316 (replace "googletest" googletest)))))) 2316 (replace "googletest" googletest))))))
2317 2317
2318(define-public abseil-cpp-20250127 2318(define-public abseil-cpp-20250127
@@ -3381,7 +3381,7 @@ syntax with variables, conditions, functions and more.")
3381 (build-system pyproject-build-system) 3381 (build-system pyproject-build-system)
3382 (arguments 3382 (arguments
3383 (list #:test-flags #~(list "--ignore=case_studies/"))) 3383 (list #:test-flags #~(list "--ignore=case_studies/")))
3384 (native-inputs (modify-inputs (package-native-inputs jsonnet) 3384 (native-inputs (modify-inputs native-inputs
3385 (append python-pyyaml python-pytest python-setuptools))) 3385 (append python-pyyaml python-pytest python-setuptools)))
3386 (synopsis "Python bindings for Jsonnet, the data templating language") 3386 (synopsis "Python bindings for Jsonnet, the data templating language")
3387 (description "This package provides a Python library named @code{_jsonnet} 3387 (description "This package provides a Python library named @code{_jsonnet}