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

with pkgs;
let
  pyEnv = python3.withPackages (ps: [ ps.GitPython ]);
in

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