mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 23:13:19 +00:00
lifelines: init at 2018-10-13-unstable
This commit is contained in:
parent
ac3b216a8b
commit
8f60b7c905
29
pkgs/applications/misc/lifelines/default.nix
Normal file
29
pkgs/applications/misc/lifelines/default.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -18680,6 +18680,8 @@ in
|
||||
|
||||
libvmi = callPackage ../development/libraries/libvmi { };
|
||||
|
||||
lifelines = callPackage ../applications/misc/lifelines { };
|
||||
|
||||
liferea = callPackage ../applications/networking/newsreaders/liferea {
|
||||
inherit (gnome3) dconf;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user