guix: opam: Remove stray `pk'.

* guix/import/opam.scm (opam->guix-package): Remove stray `pk'.
This commit is contained in:
Julien Lepiller 2020-12-08 13:44:53 +01:00
parent af34f757ce
commit 4e110f61ac
No known key found for this signature in database
GPG key ID: 53D457B2D636EE82

View file

@ -267,7 +267,7 @@ (define* (opam->guix-package name #:key (repository (get-opam-repository)) versi
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")))