2016-06-16 23:16:55 +01:00
|
|
|
{ stdenv, fetchurl, dysnomia, disnix, socat, pkgconfig, getopt }:
|
2010-12-17 18:42:02 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2016-06-16 23:16:55 +01:00
|
|
|
name = "disnixos-0.5";
|
2011-12-12 14:02:12 +00:00
|
|
|
|
2010-12-17 18:42:02 +00:00
|
|
|
src = fetchurl {
|
2016-06-16 23:16:55 +01:00
|
|
|
url = http://hydra.nixos.org/build/36899006/download/3/disnixos-0.5.tar.gz;
|
|
|
|
sha256 = "0pl3j8kwcz90as5cs0yipfbg555lw3z6xsylk6g2ili878mni1aq";
|
2010-12-17 18:42:02 +00:00
|
|
|
};
|
2011-12-12 14:02:12 +00:00
|
|
|
|
2016-06-16 23:16:55 +01:00
|
|
|
buildInputs = [ socat pkgconfig dysnomia disnix getopt ];
|
2011-12-12 14:02:12 +00:00
|
|
|
|
2010-12-17 18:42:02 +00:00
|
|
|
dontStrip = true;
|
2011-02-18 15:58:08 +00:00
|
|
|
|
|
|
|
meta = {
|
2011-10-20 12:07:47 +01:00
|
|
|
description = "Provides complementary NixOS infrastructure deployment to Disnix";
|
2014-06-19 05:19:00 +01:00
|
|
|
license = stdenv.lib.licenses.lgpl21Plus;
|
2011-02-18 15:58:08 +00:00
|
|
|
maintainers = [ stdenv.lib.maintainers.sander ];
|
2016-08-02 18:50:55 +01:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2011-02-18 15:58:08 +00:00
|
|
|
};
|
2010-12-17 18:42:02 +00:00
|
|
|
}
|