aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--npmPackages/default.nix1
-rw-r--r--npmPackages/npm4nix/default.nix22
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 = [
+
+ ];
+}
+