10 lines
182 B
Nix
10 lines
182 B
Nix
{ nixpkgs ? import ../.. { }
|
|
}:
|
|
with nixpkgs;
|
|
mkShell {
|
|
buildInputs = [
|
|
bash luarocks-nix nix-prefetch-scripts parallel
|
|
];
|
|
LUAROCKS_NIXPKGS_PATH = toString nixpkgs.path;
|
|
}
|