diff mbox series

[bug#62359] import: opam: opam->guix-package: Fix default repo argument.

Message ID 20230321225952.5138-1-raingloom@riseup.net
State New
Headers show
Series [bug#62359] import: opam: opam->guix-package: Fix default repo argument. | expand

Commit Message

Csepp March 21, 2023, 10:59 p.m. UTC
* guix/import/opam.scm
  (opam->guix-package): Make default repo a list of strings.
---
 guix/import/opam.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Ludovic Courtès April 8, 2023, 10:10 p.m. UTC | #1
Hi,

Csepp <raingloom@riseup.net> skribis:

> * guix/import/opam.scm
>   (opam->guix-package): Make default repo a list of strings.

I adjusted the docstring accordingly and applied it, thanks!

Ludo’.
diff mbox series

Patch

diff --git a/guix/import/opam.scm b/guix/import/opam.scm
index fa4f678593..4d353248d9 100644
--- a/guix/import/opam.scm
+++ b/guix/import/opam.scm
@@ -340,7 +340,7 @@  (define (opam->guix-source url-dict)
                     (sha256 (base32 ,(guix-hash-url temp)))))))
         'no-source-information)))
 
-(define* (opam->guix-package name #:key (repo 'opam) version #:allow-other-keys)
+(define* (opam->guix-package name #:key (repo '("opam")) version #:allow-other-keys)
   "Import OPAM package NAME from REPOSITORY (a directory name) or, if
 REPOSITORY is #f, from the official OPAM repository.  Return a 'package' sexp
 or #f on failure."