dydisnix: init at unstable (#49366)
* dydisnix: init at unstable-2018-04-26 updated with suggestions from @xeji * Update pkgs/tools/package-management/disnix/dydisnix/default.nix Co-Authored-By: Ryan Mulligan <ryan@ryantm.com> * Add dydisxnix and libnixxml Co-authored-by: Ryan Mulligan <ryan@ryantm.com> Co-authored-by: Tom Bereknyei <tom@rebelliondefense.com>
This commit is contained in:
co-authored by
Ryan Mulligan
Tom Bereknyei
parent
4cd6676a79
commit
ac0ac4fe51
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl, pkgconfig, glib, libxml2, libxslt, getopt, nixUnstable, dysnomia, libintl, libiconv }:
|
||||
{ stdenv, fetchurl, pkgconfig, glib, libxml2, libxslt, getopt, gettext, nixUnstable, dysnomia, libintl, libiconv, help2man, doclifter, docbook5, dblatex, doxygen, libnixxml, autoreconfHook }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "disnix-0.9.1";
|
||||
@@ -18,7 +18,7 @@ stdenv.mkDerivation {
|
||||
meta = {
|
||||
description = "A Nix-based distributed service deployment tool";
|
||||
license = stdenv.lib.licenses.lgpl21Plus;
|
||||
maintainers = [ stdenv.lib.maintainers.sander ];
|
||||
maintainers = with stdenv.lib.maintainers; [ sander tomberek ];
|
||||
platforms = stdenv.lib.platforms.unix;
|
||||
};
|
||||
}
|
||||
|
||||
@@ -0,0 +1,27 @@
|
||||
{ stdenv, fetchFromGitHub, autoconf, automake, libtool , pkgconfig, glib, libxml2, libxslt, getopt, libiconv, gettext, nix, disnix, libnixxml }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version="2020-07-04";
|
||||
name = "dydisnix-${version}";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "svanderburg";
|
||||
repo = "dydisnix";
|
||||
rev = "e99091f1c2329d562097e35faedee80622d387f0";
|
||||
sha256 = "sha256-XKab2hNGtWDkIEMxE1vMvqQBTP9BvHTabBVfzpH57h0=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pkgconfig autoconf automake libtool ];
|
||||
buildInputs = [ glib libxml2 libxslt getopt nix disnix libiconv gettext libnixxml ];
|
||||
preConfigure = ''
|
||||
./bootstrap
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "A toolset enabling self-adaptive redeployment on top of Disnix";
|
||||
longDescription = "Dynamic Disnix is a (very experimental!) prototype extension framework for Disnix supporting dynamic (re)deployment of service-oriented systems.";
|
||||
license = stdenv.lib.licenses.lgpl21Plus;
|
||||
maintainers = [ stdenv.lib.maintainers.tomberek ];
|
||||
platforms = stdenv.lib.platforms.unix;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user