mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
9 lines
182 B
Nix
9 lines
182 B
Nix
{ nixpkgs ? import ../.. { }
|
|
}:
|
|
with nixpkgs;
|
|
mkShell {
|
|
buildInputs = [
|
|
bash luarocks-nix nix-prefetch-scripts parallel
|
|
];
|
|
LUAROCKS_NIXPKGS_PATH = toString nixpkgs.path;
|
|
}
|