nix environment with busybox

This commit is contained in:
Thomas Levine 2016-03-06 09:39:59 +00:00
parent 81b028d546
commit 0b7812bfd1
1 changed files with 6 additions and 0 deletions

6
default.nix Normal file
View File

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