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