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
anvil-editor: init at 0.4
[NixPkgs.git]
/
pkgs
/
applications
/
editors
/
kakoune
/
plugins
/
update-shell.nix
blob
b323574169aa3b342e28f981afb1b2447235be2c
1
{ pkgs ? import ../../../../.. { } }:
2
3
with pkgs;
4
let
5
pyEnv = python3.withPackages (ps: [ ps.gitpython ]);
6
in
7
8
mkShell {
9
packages = [
10
bash
11
pyEnv
12
nix
13
nix-prefetch-scripts
14
];
15
}