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/docbook.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/docbook.scm')
| -rw-r--r-- | gnu/packages/docbook.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/docbook.scm b/gnu/packages/docbook.scm index 6cac689282c..a373f8e373c 100644 --- a/gnu/packages/docbook.scm +++ b/gnu/packages/docbook.scm | |||
| @@ -279,7 +279,7 @@ downloading from @var{source}, where @var{version} is a string and | |||
| 279 | "catalog.xml")) | 279 | "catalog.xml")) |
| 280 | (list "rewriteSystem" "rewriteURI"))))))))) | 280 | (list "rewriteSystem" "rewriteURI"))))))))) |
| 281 | (native-inputs | 281 | (native-inputs |
| 282 | (modify-inputs (package-native-inputs template) | 282 | (modify-inputs native-inputs |
| 283 | (prepend libxml2)))))) | 283 | (prepend libxml2)))))) |
| 284 | 284 | ||
| 285 | (define-public docbook-mathml-1.0 | 285 | (define-public docbook-mathml-1.0 |
| @@ -800,7 +800,7 @@ DB2LaTeX.") | |||
| 800 | (define-public dblatex/stable | 800 | (define-public dblatex/stable |
| 801 | (hidden-package | 801 | (hidden-package |
| 802 | (package/inherit dblatex | 802 | (package/inherit dblatex |
| 803 | (inputs (modify-inputs (package-inputs dblatex) | 803 | (inputs (modify-inputs inputs |
| 804 | (replace "imagemagick" imagemagick/stable) | 804 | (replace "imagemagick" imagemagick/stable) |
| 805 | (replace "inkscape" inkscape/pinned)))))) | 805 | (replace "inkscape" inkscape/pinned)))))) |
| 806 | 806 | ||
