diff options
author | Julien Lepiller <julien@lepiller.eu> | 2020-12-08 13:58:49 +0100 |
---|---|---|
committer | Julien Lepiller <julien@lepiller.eu> | 2020-12-08 16:40:30 +0100 |
commit | 15ee1b8317adeb74938f3bb7f0c7cb635a818292 (patch) | |
tree | f08ac3629228fd6c4f52f2c7fc36777231259ca4 /tests | |
parent | 59873d94ceb97b5ca95d3dc7ea91332c66c753d2 (diff) |
guix: opam: Pass default repository to recursive importer.
* guix/import/opam.scm (opam->guix-package): Rename #:repository key
to #:repo.
(opam-recursive-import): Pass #:repo keyword.
* tests/opam.scm (opam->guix-package): Rename #:repository to #:repo.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/opam.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/opam.scm b/tests/opam.scm index ec2a668307..8d43e2ce70 100644 --- a/tests/opam.scm +++ b/tests/opam.scm @@ -85,7 +85,7 @@ url { (with-output-to-file (string-append my-package "/opam") (lambda _ (format #t "~a" test-opam-file)))) - (match (opam->guix-package "foo" #:repository test-repo) + (match (opam->guix-package "foo" #:repo test-repo) (('package ('name "ocaml-foo") ('version "1.0.0") |