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/vim.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/vim.scm')
| -rw-r--r-- | gnu/packages/vim.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/vim.scm b/gnu/packages/vim.scm index 047a0bcb69e..8e38b84c4d4 100644 --- a/gnu/packages/vim.scm +++ b/gnu/packages/vim.scm | |||
| @@ -259,7 +259,7 @@ with the editor vim."))) | |||
| 259 | (zero? (system (string-append xorg-server "/bin/Xvfb " | 259 | (zero? (system (string-append xorg-server "/bin/Xvfb " |
| 260 | display " &"))))))))))) | 260 | display " &"))))))))))) |
| 261 | (native-inputs | 261 | (native-inputs |
| 262 | (modify-inputs (package-native-inputs vim) | 262 | (modify-inputs native-inputs |
| 263 | (prepend pkg-config xorg-server-for-tests))) | 263 | (prepend pkg-config xorg-server-for-tests))) |
| 264 | (inputs | 264 | (inputs |
| 265 | `(("acl" ,acl) | 265 | `(("acl" ,acl) |
| @@ -539,7 +539,7 @@ similar to CoqIDE or ProofGeneral.") | |||
| 539 | (description "Coqtail enables interactive Coq proof development in Neovim | 539 | (description "Coqtail enables interactive Coq proof development in Neovim |
| 540 | similar to CoqIDE or ProofGeneral.") | 540 | similar to CoqIDE or ProofGeneral.") |
| 541 | (native-inputs | 541 | (native-inputs |
| 542 | (modify-inputs (package-native-inputs vim-coqtail) | 542 | (modify-inputs native-inputs |
| 543 | (replace "vim-vader" neovim-vader) | 543 | (replace "vim-vader" neovim-vader) |
| 544 | (append python-minimal))))) | 544 | (append python-minimal))))) |
| 545 | 545 | ||
