nixpkgs/pkgs/misc/vim-plugins/update-shell.nix
Matthieu Coudron 1fa84e3e02 vimPlugins: split doc generation into a hook
so that the hook can be used for lua modules as well. Improves
composition.
2021-09-04 00:12:35 +02:00

14 lines
187 B
Nix

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