mirror of
https://github.com/gburd/nix-config.git
synced 2024-11-10 15:36:25 +00:00
11 lines
170 B
Nix
11 lines
170 B
Nix
|
{ buildNpmPackage }:
|
||
|
|
||
|
buildNpmPackage {
|
||
|
pname = "foo-bar";
|
||
|
version = "0.1.0";
|
||
|
|
||
|
src = ./.;
|
||
|
|
||
|
npmDepsHash = "sha256-ykdiIuGYEUrWitBnV9Z89FZXpnJ3ODms9xiWOEtW+1s=";
|
||
|
}
|