summaryrefslogtreecommitdiff
path: root/guix/gexp.scm
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2020-04-02 10:59:15 +0200
committerLudovic Courtès <ludo@gnu.org>2020-04-02 11:48:25 +0200
commitb34ead48dcd3f3aff27b21d7a326f9bdfd3b2235 (patch)
treeb87cb8138d5589e3b2f1d78f613cc2908e7681c1 /guix/gexp.scm
parent2ad6eb0568ed69127aea987c009138e03b5b8954 (diff)
downloadpatches-b34ead48dcd3f3aff27b21d7a326f9bdfd3b2235.tar
patches-b34ead48dcd3f3aff27b21d7a326f9bdfd3b2235.tar.gz
gexp: 'lower-references' uses 'mapm/accumulate-builds'.
* guix/gexp.scm (lower-references): Use 'mapm/accumulate-builds' instead of 'mapm'.
Diffstat (limited to 'guix/gexp.scm')
-rw-r--r--guix/gexp.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/gexp.scm b/guix/gexp.scm
index 3d21685460..4ac0411da1 100644
--- a/guix/gexp.scm
+++ b/guix/gexp.scm
@@ -730,7 +730,7 @@ names and file names suitable for the #:allowed-references argument to
#:target target)))
(return (derivation->output-path drv))))))
- (mapm %store-monad lower lst)))
+ (mapm/accumulate-builds lower lst)))
(define default-guile-derivation
;; Here we break the abstraction by talking to the higher-level layer.