diff options
author | Ludovic Courtès <ludo@gnu.org> | 2020-04-02 10:59:15 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2020-04-02 11:48:25 +0200 |
commit | b34ead48dcd3f3aff27b21d7a326f9bdfd3b2235 (patch) | |
tree | b87cb8138d5589e3b2f1d78f613cc2908e7681c1 | |
parent | 2ad6eb0568ed69127aea987c009138e03b5b8954 (diff) | |
download | patches-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'.
-rw-r--r-- | guix/gexp.scm | 2 |
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. |