From 1ae20f03f43a2af2bcde3751a2809fe152298d34 Mon Sep 17 00:00:00 2001 From: Ludovic Courtès Date: Wed, 11 Mar 2026 23:12:16 +0100 Subject: gnu: Reference the inherited inputs values. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- gnu/packages/cpp.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/cpp.scm') 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.") "absl_symbolize_test|absl_log_format_test"))))) #~()))))) (native-inputs - (modify-inputs (package-native-inputs base) + (modify-inputs native-inputs (replace "googletest" googletest)))))) (define-public abseil-cpp-20250127 @@ -3381,7 +3381,7 @@ syntax with variables, conditions, functions and more.") (build-system pyproject-build-system) (arguments (list #:test-flags #~(list "--ignore=case_studies/"))) - (native-inputs (modify-inputs (package-native-inputs jsonnet) + (native-inputs (modify-inputs native-inputs (append python-pyyaml python-pytest python-setuptools))) (synopsis "Python bindings for Jsonnet, the data templating language") (description "This package provides a Python library named @code{_jsonnet} -- cgit v1.3