diff options
author | Ludovic Courtès <ludo@gnu.org> | 2019-03-12 17:07:04 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2019-03-12 23:51:32 +0100 |
commit | c9c51ac39aae7a4a49c8125916740f340fdfd4f7 (patch) | |
tree | 7bff7e1fb5b0f182b944bf9c7ad48a96234a9a43 /gnu/packages/guile.scm | |
parent | 29e76f07223bed1520a19d273ada5fc48fba141d (diff) | |
download | patches-c9c51ac39aae7a4a49c8125916740f340fdfd4f7.tar patches-c9c51ac39aae7a4a49c8125916740f340fdfd4f7.tar.gz |
Revert "packages: 'package-input-rewriting' can take a promise."
This reverts commit 7d2be1277b44de9d0528d9d3015443b40cb3b104, which
turned out to be unhelpful for the problem at hand:
https://lists.gnu.org/archive/html/guix-devel/2019-01/msg00486.html
Diffstat (limited to 'gnu/packages/guile.scm')
-rw-r--r-- | gnu/packages/guile.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/guile.scm b/gnu/packages/guile.scm index eb32e596d3..daeadca610 100644 --- a/gnu/packages/guile.scm +++ b/gnu/packages/guile.scm @@ -391,7 +391,7 @@ GNU@tie{}Guile. Use the @code{(ice-9 readline)} module and call its (define package-for-guile-2.0 ;; A procedure that rewrites the dependency tree of the given package to use ;; GUILE-2.0 instead of GUILE-2.2. - (package-input-rewriting (delay `((,guile-2.2 . ,guile-2.0))) + (package-input-rewriting `((,guile-2.2 . ,guile-2.0)) (guile-variant-package-name "guile2.0"))) (define-public guile-for-guile-emacs |