diff options
author | Maxime Devos <maximedevos@telenet.be> | 2021-05-25 15:20:34 +0200 |
---|---|---|
committer | Mathieu Othacehe <othacehe@gnu.org> | 2021-06-04 13:34:37 +0200 |
commit | 8190f5bb97be4696b7ab6a88ff8397d5a28299e8 (patch) | |
tree | 1c2f22f14fe319476fe697a047fb1a313203f978 | |
parent | a9afff4beb830b344a59a6fd7e48335e5c9c3da5 (diff) | |
download | guix-8190f5bb97be4696b7ab6a88ff8397d5a28299e8.tar.gz |
gnu: ci: Use 'inputs' in build phases instead of '%build-inputs'.
In build phases, the former is preferred. * gnu/packages/ci.scm (cuirass)[arguments]<#:phases>{wrap-program}: Use 'inputs' argument instead of '%build-inputs'. Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
-rw-r--r-- | gnu/packages/ci.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/ci.scm b/gnu/packages/ci.scm index 0a5f3afbd2..58fdefb429 100644 --- a/gnu/packages/ci.scm +++ b/gnu/packages/ci.scm @@ -141,7 +141,7 @@ (guix (assoc-ref inputs "guix")) (deps (list avahi gcrypt json zmq squee git bytes fibers zlib matd tls mail guix)) - (guile (assoc-ref %build-inputs "guile")) + (guile (assoc-ref inputs "guile")) (effective (read-line (open-pipe* OPEN_READ |