about summary refs log tree commit diff
path: root/pkgs/development/node-packages/shell-generate.nix
blob: 0ca5d494e564cce4dcf597c6d3badb167ec87b02 (plain) (blame)
1
2
3
4
5
6
7
8
9
{ nixpkgs ? import ../../.. {} }:
with nixpkgs;
mkShell {
  buildInputs = [
    bash nodePackages.node2nix
  ];
  NODE_NIXPKGS_PATH = toString ./.;
}