summary refs log tree commit diff
path: root/maintainers/scripts/update-luarocks-shell.nix
blob: 23a940b3691b33edb513a30bc92fd1e72c5e78ba (plain) (blame)
1
2
3
4
5
6
7
8
9
{ nixpkgs ? import ../.. { }
}:
with nixpkgs;
mkShell {
  buildInputs = [
    bash luarocks-nix nix-prefetch-scripts parallel
  ];
  LUAROCKS_NIXPKGS_PATH = toString nixpkgs.path;
}