diff options
author | Jelle Licht <jlicht@fsfe.org> | 2020-12-04 00:35:14 +0100 |
---|---|---|
committer | Jelle Licht <jlicht@fsfe.org> | 2020-12-04 12:55:32 +0100 |
commit | 9482250172bc82f6b869d2efc492479772029a37 (patch) | |
tree | c908de4f5393e61a55fa7e73328da9aa16257eb6 /guix/scripts/import.scm | |
parent | e14bac133cfb7f77d6a0e345f03017f925592d16 (diff) |
import: Add binary npm importer.wip-node-14
* guix/scripts/import.scm: (importers): Add "npm-binary".
* guix/import/npm-binary.scm: New file.
* guix/scripts/import/npm-binary.scm: New file.
* Makefile.am: Add them.
Co-authored-by: Timothy Sample <samplet@ngyro.com>
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 0a3863f965..286de874c5 100644 --- a/guix/scripts/import.scm +++ b/guix/scripts/import.scm @@ -77,7 +77,7 @@ rather than \\n." ;;; (define importers '("gnu" "nix" "pypi" "cpan" "hackage" "stackage" "elpa" "gem" - "cran" "crate" "texlive" "json" "opam")) + "cran" "crate" "texlive" "json" "opam" "npm-binary")) (define (resolve-importer name) (let ((module (resolve-interface |