about summary refs log tree commit diff
path: root/pkgs/misc/vim-plugins/update-shell.nix
blob: b26620677039edc95bc700c0109d689734c226a0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ nixpkgs ? import ../../.. { } }:
with nixpkgs;
let
  pyEnv = python3.withPackages(ps: [ ps.GitPython ]);
in
mkShell {
  packages = [
    bash
    pyEnv
    nix
    nix-prefetch-scripts
  ];
}