ac0ac4fe51
* 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>
28 lines
1.0 KiB
Nix
28 lines
1.0 KiB
Nix
{ 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;
|
|
};
|
|
}
|