Skip to content

Commit

Permalink
dydisnix: tidy up expression
Browse files Browse the repository at this point in the history
  • Loading branch information
svanderburg committed May 6, 2021
1 parent 52c427b commit a4c768f
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions pkgs/tools/package-management/disnix/dydisnix/default.nix
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
{ lib, stdenv, fetchFromGitHub, autoconf, automake, libtool , pkg-config, glib, libxml2, libxslt, getopt, libiconv, gettext, nix, disnix }:
{ lib, stdenv, fetchFromGitHub, autoconf, automake, libtool, pkg-config, glib
, libxml2, libxslt, getopt, libiconv, gettext, nix, disnix
}:

stdenv.mkDerivation rec {
version="2020-11-02";
version = "unstable-2020-11-02";
name = "dydisnix-${version}";

src = fetchFromGitHub {
Expand All @@ -13,13 +15,16 @@ stdenv.mkDerivation rec {

nativeBuildInputs = [ pkg-config autoconf automake libtool ];
buildInputs = [ glib libxml2 libxslt getopt nix disnix libiconv gettext ];

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.";
longDescription = ''
Dynamic Disnix is a (very experimental!) prototype extension framework for Disnix supporting dynamic (re)deployment of service-oriented systems.
'';
license = lib.licenses.lgpl21Plus;
maintainers = [ lib.maintainers.tomberek ];
platforms = lib.platforms.unix;
Expand Down

0 comments on commit a4c768f

Please sign in to comment.