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