1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/development/web/cypress/cypress-example-kitchensink/regen-nix.nix
2021-07-15 10:40:10 +02:00

9 lines
186 B
Nix

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