diff options
Diffstat (limited to 'npmPackages/color-name')
-rw-r--r-- | npmPackages/color-name/default.nix | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/npmPackages/color-name/default.nix b/npmPackages/color-name/default.nix new file mode 100644 index 0000000..4059e1d --- /dev/null +++ b/npmPackages/color-name/default.nix @@ -0,0 +1,15 @@ +{ fetchgit, buildNpmPackage }: + +buildNpmPackage rec { + pname = "color-name"; + version = "1.1.4"; + src = fetchgit { + url = "https://github.com/colorjs/color-name.git"; + rev = "4536ce5944f56659a2dfb2198eaf81b5ad5f2ad9"; + sha256 = "1m9paib6kj7hy49aapv2h0mi8a77r0rqdyj8xnp34lkkwpz7qasi"; + }; + + npmInputs = [ + ]; +} + |