depot/third_party/nixpkgs/maintainers/scripts/update-luarocks-shell.nix

13 lines
191 B
Nix
Raw Normal View History

{ nixpkgs ? import ../.. { }
}:
with nixpkgs;
mkShell {
packages = [
bash
luarocks-nix
nix-prefetch-scripts
parallel
];
LUAROCKS_NIXPKGS_PATH = toString nixpkgs.path;
}