0fe1cd7bea
GitOrigin-RevId: c6c4a3d45ab200f17805d2d86a1ff1cc7ca2b186
21 lines
642 B
Text
Executable file
21 lines
642 B
Text
Executable file
#!/usr/bin/env nix-shell
|
|
#!nix-shell ./regen-nix.nix
|
|
#!nix-shell -i bash
|
|
|
|
node2nix \
|
|
--nodejs-12 \
|
|
--input $src/package.json \
|
|
--lock $src/package-lock.json \
|
|
--composition cypress-example-kitchensink.nix \
|
|
--development \
|
|
;
|
|
|
|
# node2nix produces opinionated expressions that work for in-repo packaging
|
|
# but aren't ideal for Nixpkgs:
|
|
sed -i cypress-example-kitchensink.nix \
|
|
-e 's^fetchgit^fetchgit callPackage^'
|
|
sed -i node-packages.nix \
|
|
-e 's^fetchgit, ^fetchgit, callPackage, ^' \
|
|
-e 's^src = .*/nix/store/.*-source^src = callPackage ./src.nix {}^' \
|
|
-e 's^nix-gitignore.gitignoreSourcePure^(ignore: src: src)^' \
|
|
;
|