civodul pushed a commit to branch master
in repository guix.
commit b34ead48dcd3f3aff27b21d7a326f9bdfd3b2235
Author: Ludovic Courtès <[email protected]>
AuthorDate: Thu Apr 2 10:59:15 2020 +0200
gexp: 'lower-references' uses 'mapm/accumulate-builds'.
* guix/gexp.scm (lower-references): Use 'mapm/accumulate-builds' instead
of 'mapm'.
---
guix/gexp.scm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/guix/gexp.scm b/guix/gexp.scm
index 3d21685..4ac0411 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.