about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/web/cypress/cypress-example-kitchensink/regen-nix.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/web/cypress/cypress-example-kitchensink/regen-nix.nix')
-rw-r--r--nixpkgs/pkgs/development/web/cypress/cypress-example-kitchensink/regen-nix.nix8
1 files changed, 8 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/web/cypress/cypress-example-kitchensink/regen-nix.nix b/nixpkgs/pkgs/development/web/cypress/cypress-example-kitchensink/regen-nix.nix
new file mode 100644
index 000000000000..f7276c5c2ec4
--- /dev/null
+++ b/nixpkgs/pkgs/development/web/cypress/cypress-example-kitchensink/regen-nix.nix
@@ -0,0 +1,8 @@
+{ pkgs ? import ../../../../.. { config = { }; overlays = [ ]; } }:
+
+pkgs.mkShell {
+  nativeBuildInputs = [
+    pkgs.nodePackages.node2nix
+  ];
+  src = pkgs.callPackage ./src.nix { };
+}