about summary refs log tree commit diff
path: root/pkgs/applications/editors/vim/plugins/update-shell.nix
blob: 52a9e741af21e6f3e3ac5f727f4a6bca7f8e8dbc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ pkgs ? import ../../../../.. { } }:

# Ideally, pkgs points to default.nix file of Nixpkgs official tree
with pkgs;
let
  pyEnv = python3.withPackages (ps: [ ps.GitPython ]);
in

mkShell {
  packages = [
    bash
    pyEnv
    nix
    nix-prefetch-scripts
  ];
}