7292ed91df
restore the behavior of the previous updater that was using the current revision of nixpkgs instead of an outer one
14 lines
191 B
Nix
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
|
|
];
|
|
}
|