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