aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2019-07-09 23:22:48 +0200
committerLudovic Courtès <ludo@gnu.org>2019-07-15 10:01:05 +0200
commit02237f13ee0a423dce04f14538e9f765b8dc15da (patch)
tree2f87a107994e47dbfc908aa9eb7f9259c48f9ff1
parent266e54e2acebf7a5ba51422269a0af677c9934a4 (diff)
downloadguix-02237f13ee0a423dce04f14538e9f765b8dc15da.tar
guix-02237f13ee0a423dce04f14538e9f765b8dc15da.tar.gz
download: Use the new 'derivation' calling convention.
* guix/download.scm (built-in-download): Pass MIRRORS and CONTENT-ADDRESSED-MIRRORS as #:sources, not #:inputs.
-rw-r--r--guix/download.scm3
1 files changed, 1 insertions, 2 deletions
diff --git a/guix/download.scm b/guix/download.scm
index fe680be4a2..b24aaa0a86 100644
--- a/guix/download.scm
+++ b/guix/download.scm
@@ -432,8 +432,7 @@ download by itself using its own dependencies."
#:system system
#:hash-algo hash-algo
#:hash hash
- #:inputs `((,mirrors)
- (,content-addressed-mirrors))
+ #:sources (list mirrors content-addressed-mirrors)
;; Honor the user's proxy and locale settings.
#:leaked-env-vars '("http_proxy" "https_proxy"