[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#46832] [PATCH] import: hackage: Accept optional version paramter.
From: |
Xinglu Chen |
Subject: |
[bug#46832] [PATCH] import: hackage: Accept optional version paramter. |
Date: |
Sun, 28 Feb 2021 17:16:10 +0100 |
* guix/import/hackage.scm (hackage-recursive-import): Add the VERSION key.
Make REPO a key.
---
Looks like Martin forgot to update the Hackage importer in commit
bea3b17739fc591b8cf6db1f8d28a6f6c9585577.
guix/import/hackage.scm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/guix/import/hackage.scm b/guix/import/hackage.scm
index 6ca4f65cb0..9f992ffe8e 100644
--- a/guix/import/hackage.scm
+++ b/guix/import/hackage.scm
@@ -344,8 +344,8 @@ respectively."
(memoize hackage->guix-package))
(define* (hackage-recursive-import package-name . args)
- (recursive-import package-name #f
- #:repo->guix-package (lambda (name repo)
+ (recursive-import package-name
+ #:repo->guix-package (lambda* (name #:key repo version)
(apply hackage->guix-package/m
(cons name args)))
#:guix-name hackage-name->package-name))
--
2.30.0
- [bug#46832] [PATCH] import: hackage: Accept optional version paramter.,
Xinglu Chen <=