diff options
author | Igor Pashev <pashev.igor@gmail.com> | 2019-10-02 14:03:41 +0200 |
---|---|---|
committer | Igor Pashev <pashev.igor@gmail.com> | 2019-10-02 14:03:53 +0200 |
commit | b455112b6d9eb1584a9da53742436397f6688707 (patch) | |
tree | 8046eb5b390dd7169157b4928992322d7a211d9e /npmPackages | |
parent | 2c9fafb89b4647a5b67a133e5eda23c7f8d4ed0d (diff) | |
download | npm.nix-b455112b6d9eb1584a9da53742436397f6688707.tar.gz |
Add npm4nix 0.1.0
Diffstat (limited to 'npmPackages')
-rw-r--r-- | npmPackages/default.nix | 1 | ||||
-rw-r--r-- | npmPackages/npm4nix/default.nix | 22 |
2 files changed, 23 insertions, 0 deletions
diff --git a/npmPackages/default.nix b/npmPackages/default.nix index 7de839b..581d747 100644 --- a/npmPackages/default.nix +++ b/npmPackages/default.nix @@ -84,6 +84,7 @@ let async-foreach = callPackage ./async-foreach {}; chartjs-color-string = callPackage ./chartjs-color-string { }; color-name = callPackage ./color-name {}; + npm4nix = callPackage ./npm4nix {}; posix-getopt = callPackage ./posix-getopt {}; } ); diff --git a/npmPackages/npm4nix/default.nix b/npmPackages/npm4nix/default.nix new file mode 100644 index 0000000..38c14ec --- /dev/null +++ b/npmPackages/npm4nix/default.nix @@ -0,0 +1,22 @@ +{ fetchgit, buildNpmPackage }: + +buildNpmPackage { + pname = "npm4nix"; + version = "0.1.0"; + src = fetchgit { + url = "https://github.com/ip1981/npm4nix"; + rev = "d013913ab48a8ee664e84d74daf52211b7c9411d"; + sha256 = "1l52r5lyjwm3bjfkzjsrqqc6ax0xk9cmdl2wm4qjwp7krywfwwk5"; + }; + + meta = { + description = ""; + homepage = "https://github.com/ip1981/npm4nix#readme"; + license = "WTFPL"; + }; + + npmInputs = [ + + ]; +} + |