diff options
author | Maxime Devos <maximedevos@telenet.be> | 2021-05-25 15:58:33 +0200 |
---|---|---|
committer | Mathieu Othacehe <othacehe@gnu.org> | 2021-06-04 13:34:54 +0200 |
commit | 4a600ada5a79fbf3c04011452593d2ee62d50a27 (patch) | |
tree | 91dca582a85f29ad666242fdd2d54112a6eea8f7 /gnu | |
parent | 156b8f9cd2bbbb9580dd01a30a9891fddf79362c (diff) |
gnu: ding: Use 'inputs' in build phases instead of '%build-inputs'.
In build phases, the former is preferred.
* gnu/packages/dictionaries.scm
(ding)[arguments]<#:phases>{install}: Use 'inputs' argument instead
of '%build-inputs'.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/dictionaries.scm | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/gnu/packages/dictionaries.scm b/gnu/packages/dictionaries.scm index 30995bf986..2b1f7f0ad1 100644 --- a/gnu/packages/dictionaries.scm +++ b/gnu/packages/dictionaries.scm @@ -175,11 +175,10 @@ work, such as sentence length and other readability measures.") (delete 'build) (delete 'check) (replace 'install - (lambda _ + (lambda* (#:key inputs #:allow-other-keys) (let ((bindir (string-append (assoc-ref %outputs "out") "/bin")) - (wish (string-append - (assoc-ref %build-inputs "tk") + (wish (string-append (assoc-ref inputs "tk") "/bin/wish8.6")) (sharedir (string-append (assoc-ref %outputs "out") |