9.nix-gitignore/shell.nix
2019-05-12 16:37:34 +02:00

5 lines
96 B
Nix

{ pkgs ? import ./nix {}}:
pkgs.mkShell {
name = "dev-shell";
buildInputs = [ pkgs.niv ];
}