civodul pushed a commit to branch master
in repository guix.
commit a1639ae9de39d5ce47e6ddfd87e792db52b44bd6
Author: Ludovic Courtès <[email protected]>
Date: Wed Apr 11 00:29:47 2018 +0200
self: 'package-for-guile' really honors GUILE-VERSION.
* guix/self.scm (package-for-guile): Pass GUILE-VERSION to
'false-if-wrong-guile'.
---
guix/self.scm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/guix/self.scm b/guix/self.scm
index dd61322..0730cd8 100644
--- a/guix/self.scm
+++ b/guix/self.scm
@@ -69,7 +69,7 @@ GUILE-VERSION (\"2.0\" or \"2.2\"), or #f if none of the
packages matches."
(#f
(loop rest))
((? package? package)
- (or (false-if-wrong-guile package)
+ (or (false-if-wrong-guile package guile-version)
(loop rest))))))))
(define specification->package