2016-01-27 23:32:34 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, glib, libxml2, libxslt, getopt, nixUnstable, dysnomia, libintlOrEmpty, libiconv }:
|
2008-07-06 17:45:26 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2017-07-26 21:22:19 +02:00
|
|
|
name = "disnix-0.7.2";
|
2011-12-12 15:02:12 +01:00
|
|
|
|
2010-04-01 16:49:05 +02:00
|
|
|
src = fetchurl {
|
2017-07-26 21:22:19 +02:00
|
|
|
url = https://github.com/svanderburg/disnix/releases/download/disnix-0.7.2/disnix-0.7.2.tar.gz;
|
|
|
|
sha256 = "1cgf7hgqrwsqgyc77sis0hr7cwgk3vx8cd4msgq11qbwywi3b6id";
|
2009-09-02 11:47:47 +02:00
|
|
|
};
|
2011-12-12 15:02:12 +01:00
|
|
|
|
2017-09-05 23:26:13 +02:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ glib libxml2 libxslt getopt nixUnstable libintlOrEmpty libiconv dysnomia ];
|
2013-06-27 15:32:11 +02:00
|
|
|
|
2011-02-18 16:58:08 +01:00
|
|
|
meta = {
|
2015-03-02 10:37:10 +01:00
|
|
|
description = "A Nix-based distributed service deployment tool";
|
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 ];
|
2017-03-14 23:18:23 +01:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2011-02-18 16:58:08 +01:00
|
|
|
};
|
2009-09-02 11:47:47 +02:00
|
|
|
}
|