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/boost.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/boost.scm')
| -rw-r--r-- | gnu/packages/boost.scm | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gnu/packages/boost.scm b/gnu/packages/boost.scm index b98b72a23b1..d2fe7c690f1 100644 --- a/gnu/packages/boost.scm +++ b/gnu/packages/boost.scm @@ -358,7 +358,7 @@ across a broad spectrum of applications.") ((#:make-flags make-flags) #~(cons* "--without-python" #$make-flags)))) (inputs - (modify-inputs (package-inputs boost) + (modify-inputs inputs (delete "python-minimal-wrapper"))) (properties '((hidden? . #t))))) @@ -367,7 +367,7 @@ across a broad spectrum of applications.") (inherit boost-1.83) (name "boost-numpy") (native-inputs - (modify-inputs (package-native-inputs boost) + (modify-inputs native-inputs (append python-numpy-1))))) (define-public boost-with-numpy @@ -375,7 +375,7 @@ across a broad spectrum of applications.") (inherit boost) (name "boost-with-numpy") (native-inputs - (modify-inputs (package-native-inputs boost) + (modify-inputs native-inputs (append python-numpy))) (synopsis "Boost C++ libraries with inclusion of Boost.NumPy"))) @@ -449,7 +449,7 @@ signals and slots system.") (inherit boost) (name "boost-mpi") (inputs - (modify-inputs (package-inputs boost) + (modify-inputs inputs (append openmpi))) (arguments (substitute-keyword-arguments arguments @@ -469,7 +469,7 @@ signals and slots system.") (inherit boost-mpi) (name "boost-mpi-numpy") (inputs - (modify-inputs (package-inputs boost-mpi) + (modify-inputs inputs (append python-numpy))) (synopsis "Boost C++ libraries with inclusion of Boost.MPI and Boost.NumPy"))) |
