diff options
author | Ludovic Courtès <ludo@gnu.org> | 2019-04-04 17:28:00 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2019-04-04 17:47:02 +0200 |
commit | c1ef50ac79ff56bebe81a173a858d83a1bee6a36 (patch) | |
tree | 2481af79285053773af1bc1355b399c82a3b6dd1 /guix/scripts | |
parent | a31174e896047e6a0f42b69db331fdeebb3cc995 (diff) | |
download | gnu-guix-c1ef50ac79ff56bebe81a173a858d83a1bee6a36.tar gnu-guix-c1ef50ac79ff56bebe81a173a858d83a1bee6a36.tar.gz |
gexp: Remove workarounds for <https://bugs.gnu.org/15602>.
* gnu/services/base.scm (hydra-key-authorization)[aaa]: Remove.
[default-acl]: Don't import it.
* guix/scripts/pack.scm (store-database)[build]: Don't import
(gnu build install).
Diffstat (limited to 'guix/scripts')
-rw-r--r-- | guix/scripts/pack.scm | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/guix/scripts/pack.scm b/guix/scripts/pack.scm index e5502ef9ca..d2ef68d153 100644 --- a/guix/scripts/pack.scm +++ b/guix/scripts/pack.scm @@ -126,13 +126,9 @@ dependencies are registered." (define build (with-extensions gcrypt-sqlite3&co - ;; XXX: Adding (gnu build install) just to work around - ;; <https://bugs.gnu.org/15602>: that way, (guix build store-copy) is - ;; copied last and the 'store-info-XXX' macros are correctly expanded. (with-imported-modules (source-module-closure '((guix build store-copy) - (guix store database) - (gnu build install))) + (guix store database))) #~(begin (use-modules (guix store database) (guix build store-copy) |