5 lines
96 B
Nix
5 lines
96 B
Nix
{ pkgs ? import ./nix {}}:
|
|
pkgs.mkShell {
|
|
name = "dev-shell";
|
|
buildInputs = [ pkgs.niv ];
|
|
}
|