2010-12-17 10:42:02 -08:00
|
|
|
{stdenv, fetchurl, disnix, socat, pkgconfig}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2011-07-08 07:42:13 -07:00
|
|
|
name = "disnixos-0.2pre27672";
|
2010-12-17 10:42:02 -08:00
|
|
|
src = fetchurl {
|
2011-07-08 07:42:13 -07:00
|
|
|
url = http://hydra.nixos.org/build/1153468/download/3/disnixos-0.2pre27672.tar.gz;
|
|
|
|
sha256 = "0z74p9fnvchvl78brj2p3r9h0wwvpl86zk0ynzqcf8ww0h71ws08";
|
2010-12-17 10:42:02 -08:00
|
|
|
};
|
|
|
|
buildInputs = [ socat pkgconfig disnix ];
|
|
|
|
dontStrip = true;
|
|
|
|
NIX_STRIP_DEBUG = true;
|
2011-02-18 07:58:08 -08:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Provides complementary NixOS infrastructure deployment to NixOS";
|
|
|
|
license = "LGPLv2.1+";
|
|
|
|
maintainers = [ stdenv.lib.maintainers.sander ];
|
|
|
|
};
|
2010-12-17 10:42:02 -08:00
|
|
|
}
|