diff options
author | Julien Lepiller <julien@lepiller.eu> | 2018-06-06 19:14:39 +0200 |
---|---|---|
committer | Julien Lepiller <julien@lepiller.eu> | 2018-07-10 10:11:01 +0200 |
commit | b24443bff9f9f3f36353eea2ef35e6dc3745a417 (patch) | |
tree | d940c3e3c2d79ef98492fe1195179dc410c460d0 /Makefile.am | |
parent | 4f6afde9b4ac014fbcb75b9611a5a14ae096e422 (diff) | |
download | guix-b24443bff9f9f3f36353eea2ef35e6dc3745a417.tar guix-b24443bff9f9f3f36353eea2ef35e6dc3745a417.tar.gz |
guix: Add opam importer.
* guix/scripts/import.scm (importers): Add opam.
* guix/scripts/import/opam.scm: New file.
* guix/import/opam.scm: New file.
* tests/opam.scm: New file.
* Makefile.am: Add them.
* doc/guix.texi (Invoking guix import): Document it.
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index 5dc04de35c..618d1653e4 100644 --- a/Makefile.am +++ b/Makefile.am @@ -231,11 +231,13 @@ MODULES += \ guix/import/github.scm \ guix/import/gnome.scm \ guix/import/json.scm \ + guix/import/opam.scm \ guix/import/pypi.scm \ guix/import/stackage.scm \ guix/scripts/import/crate.scm \ guix/scripts/import/gem.scm \ guix/scripts/import/json.scm \ + guix/scripts/import/opam.scm \ guix/scripts/import/pypi.scm \ guix/scripts/import/stackage.scm \ guix/scripts/weather.scm @@ -382,6 +384,7 @@ if HAVE_GUILE_JSON SCM_TESTS += \ tests/pypi.scm \ + tests/opam.scm \ tests/cpan.scm \ tests/gem.scm \ tests/crate.scm |