diff options
| author | Marius Bakke <marius@gnu.org> | 2023-01-03 15:38:13 +0100 |
|---|---|---|
| committer | Marius Bakke <marius@gnu.org> | 2023-01-03 15:38:13 +0100 |
| commit | 9123bb0fba3fce976dc41cd3b8919ee73b4cee4d (patch) | |
| tree | 50ba63a4a3a6ffeb2f37fd0929813b51e00d01dc /guix/import/hackage.scm | |
| parent | ec0fbb471dfc6f72796da9ebafbb0630daa91267 (diff) | |
| parent | 71ee1fbbed8ea9788dd48a634653d66606d372ce (diff) | |
Merge branch 'master' into staging
Diffstat (limited to 'guix/import/hackage.scm')
| -rw-r--r-- | guix/import/hackage.scm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/guix/import/hackage.scm b/guix/import/hackage.scm index 3c2cd75db4..7bc2908405 100644 --- a/guix/import/hackage.scm +++ b/guix/import/hackage.scm @@ -326,7 +326,8 @@ the hash of the Cabal file." (define* (hackage->guix-package package-name #:key (include-test-dependencies? #t) (port #f) - (cabal-environment '())) + (cabal-environment '()) + #:allow-other-keys) "Fetch the Cabal file for PACKAGE-NAME from hackage.haskell.org, or, if the called with keyword parameter PORT, from PORT. Return the `package' S-expression corresponding to that package, or #f on failure. @@ -353,7 +354,7 @@ respectively." (define* (hackage-recursive-import package-name . args) (recursive-import package-name - #:repo->guix-package (lambda* (name #:key repo version) + #:repo->guix-package (lambda* (name #:key version #:allow-other-keys) (apply hackage->guix-package/m (cons name args))) #:guix-name hackage-name->package-name)) |
