diff options
author | Julien Lepiller <julien@lepiller.eu> | 2020-12-08 13:44:53 +0100 |
---|---|---|
committer | Julien Lepiller <julien@lepiller.eu> | 2020-12-08 16:40:04 +0100 |
commit | 4e110f61ac43ead1230f7cf18b8d8cc70c8bfe88 (patch) | |
tree | 3ef11d0e8bb84a0fd4a93f32c68b9b8b895abdc5 /guix | |
parent | af34f757ced016956cc73e1d9ddc52d4d79620f2 (diff) |
guix: opam: Remove stray `pk'.
* guix/import/opam.scm (opam->guix-package): Remove stray `pk'.
Diffstat (limited to 'guix')
-rw-r--r-- | guix/import/opam.scm | 2 |
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"))) |