Merge pull request #26537 from disassembler/lifelines

lifelines: init at unstable-2019-05-07
This commit is contained in:
Renaud 2019-05-19 14:57:45 +02:00 committed by GitHub
commit b72504f085
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,29 @@
{ stdenv, fetchFromGitHub, gettext, libiconv, bison, ncurses, perl, autoreconfHook }:
stdenv.mkDerivation rec {
pname = "lifelines";
version = "unstable-2019-05-07";
src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = "43f29285ed46fba322b6a14322771626e6b02c59";
sha256 = "1agszzlmkxmznpc1xj0vzxkskrcfagfjvqsdyw1yp5yg6bsq272y";
};
buildInputs = [
gettext
libiconv
ncurses
perl
];
nativeBuildInputs = [ autoreconfHook bison ];
meta = with stdenv.lib; {
description = "Genealogy tool with ncurses interface";
homepage = "https://lifelines.github.io/lifelines/";
license = licenses.mit;
maintainers = with maintainers; [ disassembler ];
platforms = platforms.linux;
};
}

View File

@ -18681,6 +18681,8 @@ in
libvmi = callPackage ../development/libraries/libvmi { };
lifelines = callPackage ../applications/misc/lifelines { };
liferea = callPackage ../applications/networking/newsreaders/liferea {
inherit (gnome3) dconf;
};