about summary refs log tree commit diff
path: root/nixpkgs/maintainers/scripts/update-luarocks-shell.nix
blob: 346b0319b08c9ad12990476296392bb7861781b1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ nixpkgs ? import ../.. { }
}:
with nixpkgs;
let
  pyEnv = python3.withPackages(ps: [ ps.gitpython ]);
in
mkShell {
  packages = [
    pyEnv
    luarocks-nix
    nix-prefetch-scripts
  ];
}