mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
1fa84e3e02
so that the hook can be used for lua modules as well. Improves composition.
14 lines
187 B
Nix
14 lines
187 B
Nix
{ nixpkgs ? import ../../.. { } }:
|
|
with nixpkgs;
|
|
let
|
|
pyEnv = python3.withPackages(ps: [ ps.GitPython ]);
|
|
in
|
|
mkShell {
|
|
packages = [
|
|
bash
|
|
pyEnv
|
|
nix-prefetch-scripts
|
|
];
|
|
}
|
|
|