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