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/parallel.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/parallel.scm')
| -rw-r--r-- | gnu/packages/parallel.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/parallel.scm b/gnu/packages/parallel.scm index 50baa27293f..aeb42f172dc 100644 --- a/gnu/packages/parallel.scm +++ b/gnu/packages/parallel.scm | |||
| @@ -344,7 +344,7 @@ minimal slurm package BASE-SLURM." | |||
| 344 | #$flags)))) | 344 | #$flags)))) |
| 345 | ;; FIXME: More optional inputs could be added. | 345 | ;; FIXME: More optional inputs could be added. |
| 346 | (inputs | 346 | (inputs |
| 347 | (modify-inputs (package-inputs base-slurm) | 347 | (modify-inputs inputs |
| 348 | ;; Add dependencies required by the slurm REST API. | 348 | ;; Add dependencies required by the slurm REST API. |
| 349 | (prepend dbus freeipmi http-parser | 349 | (prepend dbus freeipmi http-parser |
| 350 | libjwt librdkafka libyaml (list mariadb "dev")))))) | 350 | libjwt librdkafka libyaml (list mariadb "dev")))))) |
| @@ -371,7 +371,7 @@ minimal slurm package BASE-SLURM." | |||
| 371 | (sha256 | 371 | (sha256 |
| 372 | (base32 | 372 | (base32 |
| 373 | "130pjygqk794dchknjqdsinciv2b7c7r5agqsgca7m804xp09wnl")))) | 373 | "130pjygqk794dchknjqdsinciv2b7c7r5agqsgca7m804xp09wnl")))) |
| 374 | (inputs (modify-inputs (package-inputs slurm-minimal) | 374 | (inputs (modify-inputs inputs |
| 375 | (replace "openpmix" openpmix))))) ;use version 6.0.0 | 375 | (replace "openpmix" openpmix))))) ;use version 6.0.0 |
| 376 | 376 | ||
| 377 | (define-public slurm-25.05 (make-slurm slurm-minimal-25.05)) | 377 | (define-public slurm-25.05 (make-slurm slurm-minimal-25.05)) |
