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/version-control.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/version-control.scm')
| -rw-r--r-- | gnu/packages/version-control.scm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm index ff18e396437..9182768cdb6 100644 --- a/gnu/packages/version-control.scm +++ b/gnu/packages/version-control.scm @@ -780,7 +780,7 @@ everything from small to very large projects with speed and efficiency.") package-transitive-propagated-inputs perl-inputs))))))))))))))) (native-inputs - (modify-inputs (package-native-inputs git-minimal) + (modify-inputs native-inputs ;; For documentation. (append asciidoc docbook2x @@ -791,7 +791,7 @@ everything from small to very large projects with speed and efficiency.") texinfo xmlto))) (inputs - (modify-inputs (package-inputs git-minimal) + (modify-inputs inputs (append bash-minimal ;for wrap-program python ;for git-p4 @@ -1888,7 +1888,7 @@ a built-in cache to decrease server I/O pressure.") (invoke "tar" "--strip-components=1" "-C" "git" "-xf" #$(this-package-input "git-source.tar.xz")))))))) (inputs - (modify-inputs (package-inputs cgit) + (modify-inputs inputs (replace "git-source.tar.xz" ;; cgit-pink is tightly bound to git. Use GIT_VER from the Makefile, ;; which may not match the current (package-version git). @@ -1899,7 +1899,7 @@ a built-in cache to decrease server I/O pressure.") (base32 "0w43a35mhc2qf2gjkxjlnkf2lq8g0snf34iy5gqx2678yq7llpa0")))))) (native-inputs - (modify-inputs (package-native-inputs cgit) + (modify-inputs native-inputs (append gnu-gettext perl))) (home-page "https://git.causal.agency/cgit-pink/about/") (description "cgit-pink is a fast web interface for the Git SCM, using a |
