nixpkgs/pkgs/development/web/cypress/cypress-example-kitchensink/regen-nix.nix
2021-07-15 10:40:10 +02:00

8 lines
186 B
Nix

{ pkgs ? import ../../../../.. { config = { }; overlays = [ ]; } }:
pkgs.mkShell {
nativeBuildInputs = [
pkgs.nodePackages.node2nix
];
src = pkgs.callPackage ./src.nix { };
}