repo.or.cz
/
NixPkgs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
jnv: 0.4.2 -> 0.5.0 (#371655)
[NixPkgs.git]
/
pkgs
/
applications
/
editors
/
kakoune
/
plugins
/
update-shell.nix
blob
787891309237b294ebbfbb58b675dd94b28fb5ff
1
{
2
pkgs ? import ../../../../.. { },
3
}:
4
5
with pkgs;
6
let
7
pyEnv = python3.withPackages (ps: [ ps.gitpython ]);
8
in
9
10
mkShell {
11
packages = [
12
bash
13
pyEnv
14
nix
15
nix-prefetch-scripts
16
];
17
}