urchin/default.nix

11 lines
175 B
Nix
Raw Normal View History

2016-03-06 09:39:59 +00:00
with import <nixpkgs> {}; {
urchin = stdenv.mkDerivation {
name = "urchin";
2016-03-06 09:40:36 +00:00
buildInputs = [
busybox
bash dash mksh zsh
2016-03-18 19:30:46 +00:00
python ruby
2016-03-06 09:40:36 +00:00
];
2016-03-06 09:39:59 +00:00
};
}