2014-03-30 12:38:49 -07:00
|
|
|
{ stdenv, fetchurl, disnix, socat, pkgconfig, getopt }:
|
2010-12-17 10:42:02 -08:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2015-03-13 14:07:46 -07:00
|
|
|
name = "disnixos-0.2";
|
2011-12-12 06:02:12 -08:00
|
|
|
|
2010-12-17 10:42:02 -08:00
|
|
|
src = fetchurl {
|
2015-03-13 14:07:46 -07:00
|
|
|
url = http://hydra.nixos.org/build/20419306/download/3/disnixos-0.2.tar.gz;
|
|
|
|
sha256 = "1xysklly0gvh0np0h3f30sfs5lx6qnwj59l8caynwn46qy596gnx";
|
2010-12-17 10:42:02 -08:00
|
|
|
};
|
2011-12-12 06:02:12 -08:00
|
|
|
|
2014-03-30 12:38:49 -07:00
|
|
|
buildInputs = [ socat pkgconfig disnix getopt ];
|
2011-12-12 06:02:12 -08:00
|
|
|
|
2010-12-17 10:42:02 -08:00
|
|
|
dontStrip = true;
|
2011-02-18 07:58:08 -08:00
|
|
|
|
|
|
|
meta = {
|
2011-10-20 04:07:47 -07:00
|
|
|
description = "Provides complementary NixOS infrastructure deployment to Disnix";
|
2014-06-18 21:19:00 -07:00
|
|
|
license = stdenv.lib.licenses.lgpl21Plus;
|
2011-02-18 07:58:08 -08:00
|
|
|
maintainers = [ stdenv.lib.maintainers.sander ];
|
|
|
|
};
|
2010-12-17 10:42:02 -08:00
|
|
|
}
|