nixpkgs/maintainers/scripts/update-luarocks-shell.nix
Matthieu Coudron 7292ed91df update-luarocks-packages: use the current nixpkgs
restore the behavior of the previous updater that was using the current revision of nixpkgs instead of an outer one
2021-08-29 19:39:42 +02:00

14 lines
191 B
Nix

{ nixpkgs ? import ../.. { }
}:
with nixpkgs;
let
pyEnv = python3.withPackages(ps: [ ps.GitPython ]);
in
mkShell {
packages = [
pyEnv
luarocks-nix
nix-prefetch-scripts
];
}