diff options
author | Marius Bakke <mbakke@fastmail.com> | 2019-07-07 01:18:18 +0200 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2019-07-07 01:18:18 +0200 |
commit | 36175a3a9eb5bd4096de4e06e1f6b0e8cd895d84 (patch) | |
tree | 7c2d8dd2267b2dc533d5f59acc137641e2325e52 /gnu/ci.scm | |
parent | 42dcfca4cc424aa790d8fb62eb327782fd08aad7 (diff) | |
parent | c72647fbae675654e32e17a6891980a7b9272a71 (diff) | |
download | guix-36175a3a9eb5bd4096de4e06e1f6b0e8cd895d84.tar guix-36175a3a9eb5bd4096de4e06e1f6b0e8cd895d84.tar.gz |
Merge branch 'master' into staging
Diffstat (limited to 'gnu/ci.scm')
-rw-r--r-- | gnu/ci.scm | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gnu/ci.scm b/gnu/ci.scm index e108b4b15b..4885870e16 100644 --- a/gnu/ci.scm +++ b/gnu/ci.scm @@ -193,9 +193,11 @@ system.") (define channel-build-system ;; Build system used to "convert" a channel instance to a package. (let* ((build (lambda* (store name inputs - #:key instance #:allow-other-keys) + #:key instance system + #:allow-other-keys) (run-with-store store - (channel-instances->derivation (list instance))))) + (channel-instances->derivation (list instance)) + #:system system))) (lower (lambda* (name #:key system instance #:allow-other-keys) (bag (name name) |