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/debug.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/debug.scm')
| -rw-r--r-- | gnu/packages/debug.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/debug.scm b/gnu/packages/debug.scm index 6c8b192f6d8..7f0a0fa4af7 100644 --- a/gnu/packages/debug.scm +++ b/gnu/packages/debug.scm @@ -375,7 +375,7 @@ tool.") (delete-file "tests/qemu-iotests/127") (delete-file "tests/qemu-iotests/267")))) '()))))) - (inputs (modify-inputs (package-inputs base) + (inputs (modify-inputs inputs (delete "dtc"))) (home-page "https://github.com/AFLplusplus/qemuafl") (synopsis "QEMU for AFL++"))))) @@ -717,7 +717,7 @@ the position of the variable and allows you to modify its value.") "11vvch8bi0yhjfz7gn92b3xmmm0cgi3qfiyhbnnj89frkhbwd87n")) (patches (search-patches "remake-impure-dirs.patch")))) (inputs - (modify-inputs (package-inputs gnu-make) + (modify-inputs inputs (prepend readline))) (home-page "https://bashdb.sourceforge.net/remake/") (description "Remake is an enhanced version of GNU Make that adds improved |
