add shells to nix enviroment

This commit is contained in:
Thomas Levine 2016-03-06 09:40:36 +00:00
parent 0b7812bfd1
commit 91e5630d74
1 changed files with 4 additions and 1 deletions

View File

@ -1,6 +1,9 @@
with import <nixpkgs> {}; {
urchin = stdenv.mkDerivation {
name = "urchin";
buildInputs = [ busybox ];
buildInputs = [
busybox
bash dash mksh zsh
];
};
}