mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 04:02:55 +03:00
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
|
|
];
|
|
}
|