summaryrefslogtreecommitdiff
path: root/guix/import/opam.scm
diff options
context:
space:
mode:
authorJulien Lepiller <julien@lepiller.eu>2020-12-08 13:44:53 +0100
committerJulien Lepiller <julien@lepiller.eu>2020-12-08 16:40:04 +0100
commit4e110f61ac43ead1230f7cf18b8d8cc70c8bfe88 (patch)
tree3ef11d0e8bb84a0fd4a93f32c68b9b8b895abdc5 /guix/import/opam.scm
parentaf34f757ced016956cc73e1d9ddc52d4d79620f2 (diff)
downloadguix-patches-4e110f61ac43ead1230f7cf18b8d8cc70c8bfe88.tar
guix-patches-4e110f61ac43ead1230f7cf18b8d8cc70c8bfe88.tar.gz
guix: opam: Remove stray `pk'.
* guix/import/opam.scm (opam->guix-package): Remove stray `pk'.
Diffstat (limited to 'guix/import/opam.scm')
-rw-r--r--guix/import/opam.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/import/opam.scm b/guix/import/opam.scm
index 867812124d..78d72df2ce 100644
--- a/guix/import/opam.scm
+++ b/guix/import/opam.scm
@@ -267,7 +267,7 @@ REPOSITORY is #f, from the official OPAM repository. Return a 'package' sexp
or #f on failure."
(and-let* ((opam-file (opam-fetch name repository))
(version (assoc-ref opam-file "version"))
- (opam-content (pk (assoc-ref opam-file "metadata")))
+ (opam-content (assoc-ref opam-file "metadata"))
(url-dict (metadata-ref opam-content "url"))
(source-url (or (metadata-ref url-dict "src")
(metadata-ref url-dict "archive")))