2016-06-17 00:16:55 +02:00
|
|
|
{ stdenv, fetchurl, dysnomia, disnix, socat, pkgconfig, getopt }:
|
2010-12-17 19:42:02 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2018-02-25 22:27:41 +01:00
|
|
|
name = "disnixos-0.7";
|
2011-12-12 15:02:12 +01:00
|
|
|
|
2010-12-17 19:42:02 +01:00
|
|
|
src = fetchurl {
|
2018-02-25 22:27:41 +01:00
|
|
|
url = https://github.com/svanderburg/disnixos/files/1756702/disnixos-0.7.tar.gz;
|
|
|
|
sha256 = "1qf9h3q1r27vg1ry55lj01knq6i0c213f6vlg7wj958mml7fk37b";
|
2010-12-17 19:42:02 +01:00
|
|
|
};
|
2011-12-12 15:02:12 +01:00
|
|
|
|
2017-09-05 23:26:13 +02:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ socat dysnomia disnix getopt ];
|
2011-12-12 15:02:12 +01:00
|
|
|
|
2011-02-18 16:58:08 +01:00
|
|
|
meta = {
|
2011-10-20 13:07:47 +02:00
|
|
|
description = "Provides complementary NixOS infrastructure deployment to Disnix";
|
2014-06-19 06:19:00 +02:00
|
|
|
license = stdenv.lib.licenses.lgpl21Plus;
|
2011-02-18 16:58:08 +01:00
|
|
|
maintainers = [ stdenv.lib.maintainers.sander ];
|
2016-08-02 19:50:55 +02:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2011-02-18 16:58:08 +01:00
|
|
|
};
|
2010-12-17 19:42:02 +01:00
|
|
|
}
|