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