diff options
author | David Craven <david@craven.ch> | 2016-09-22 11:40:58 +0200 |
---|---|---|
committer | David Craven <david@craven.ch> | 2016-12-14 16:30:42 +0100 |
commit | 3e0c036584b41bcc08a8c8e040295716108bb0b2 (patch) | |
tree | fb90e055f18d75cec57107b1be4a457b3dcf1af0 /guix/scripts/import.scm | |
parent | bb3f36ed4ca83f01eb422f9de9c404d53218b382 (diff) |
import: Add importer for rust crates.
* guix/import/crate.scm: New file.
* guix/scripts/import/crate.scm: New file.
* guix/scripts/import.scm (importers): Add crate importer.
* tests/crate.scm: New file.
* doc/guix.texi: Add crate importer to table.
* Makefile.am (MODULES, SCM_TESTS): Add files.
Diffstat (limited to 'guix/scripts/import.scm')
-rw-r--r-- | guix/scripts/import.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/scripts/import.scm b/guix/scripts/import.scm index e54744feca..c671686043 100644 --- a/guix/scripts/import.scm +++ b/guix/scripts/import.scm @@ -73,7 +73,7 @@ rather than \\n." ;;; Entry point. ;;; -(define importers '("gnu" "nix" "pypi" "cpan" "hackage" "elpa" "gem" "cran")) +(define importers '("gnu" "nix" "pypi" "cpan" "hackage" "elpa" "gem" "cran" "crate")) (define (resolve-importer name) (let ((module (resolve-interface |