aboutsummaryrefslogtreecommitdiff
path: root/guix/import/opam.scm
diff options
context:
space:
mode:
authorCsepp <raingloom@riseup.net>2023-03-21 23:59:52 +0100
committerLudovic Courtès <ludo@gnu.org>2023-04-08 23:47:21 +0200
commitba88f0414bc309ef00e546fcd20a6b0dd2499f5c (patch)
tree2921b476613b162a72625ca67aca316f808f2010 /guix/import/opam.scm
parentd036e1c54496b8239d08f65e559d71d837315847 (diff)
downloadguix-ba88f0414bc309ef00e546fcd20a6b0dd2499f5c.tar
guix-ba88f0414bc309ef00e546fcd20a6b0dd2499f5c.tar.gz
import: opam: opam->guix-package: Fix default repo argument.
* guix/import/opam.scm (opam->guix-package): Make default repo a list of strings. Update docstring. Co-authored-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'guix/import/opam.scm')
-rw-r--r--guix/import/opam.scm7
1 files changed, 3 insertions, 4 deletions
diff --git a/guix/import/opam.scm b/guix/import/opam.scm
index eed68e7a93..e67146e593 100644
--- a/guix/import/opam.scm
+++ b/guix/import/opam.scm
@@ -336,10 +336,9 @@ path to the repository."
(sha256 (base32 ,(guix-hash-url temp)))))))
'no-source-information)))
-(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."
+(define* (opam->guix-package name #:key (repo '("opam")) version #:allow-other-keys)
+ "Import OPAM package NAME from REPO, a list of repository names, URLs, or
+file names. Return a 'package' sexp or #f on failure."
(and-let* ((with-opam (if (member "opam" repo) repo (cons "opam" repo)))
(opam-file (opam-fetch name with-opam))
(version (assoc-ref opam-file "version"))