9 lines
209 B
Nix
9 lines
209 B
Nix
let pkgs = import (fetchTarball "channel:nixpkgs-unstable") { };
|
|
in pkgs.mkShell {
|
|
packages =
|
|
[ (pkgs.python3.withPackages (python-pkgs: [ python-pkgs.py2cfg ])) ];
|
|
shellHook = ''
|
|
exec zsh
|
|
'';
|
|
}
|