pkgs/unmap: init
This commit is contained in:
parent
db8970c43c
commit
ddcdd51f43
3 changed files with 69 additions and 0 deletions
22
pkgs/unmap.nix
Normal file
22
pkgs/unmap.nix
Normal file
|
@ -0,0 +1,22 @@
|
|||
{ lib
|
||||
, buildNpmPackage
|
||||
, fetchFromGitHub
|
||||
}:
|
||||
|
||||
buildNpmPackage rec {
|
||||
pname = "unmap";
|
||||
version = "1.1.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "chbrown";
|
||||
repo = "unmap";
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-Q/20Y3AmAW6yc98ZuUkbHz2F2pH5qxi7fHffilp2Qxw=";
|
||||
};
|
||||
|
||||
dontNpmBuild = true;
|
||||
|
||||
patches = [ ./unmap-add-package-lock.patch ];
|
||||
|
||||
npmDepsHash = "sha256-kZsd+57JMLu4syAD85F5ihapRGy8YekLhtpwRqk+Izs=";
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue