tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
lifelines: unstable-2019-05-07 -> 0-unstable-2025-01-05
Haylin Moore
10 months ago
b8d1fe7f
48382072
+7
-18
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
li
lifelines
package.nix
+7
-18
pkgs/by-name/li/lifelines/package.nix
···
2
lib,
3
stdenv,
4
fetchFromGitHub,
5
-
fetchpatch,
6
gettext,
7
libiconv,
8
bison,
···
13
14
stdenv.mkDerivation {
15
pname = "lifelines";
16
-
version = "unstable-2019-05-07";
17
18
src = fetchFromGitHub {
19
owner = "lifelines";
20
repo = "lifelines";
21
-
rev = "43f29285ed46fba322b6a14322771626e6b02c59";
22
-
sha256 = "1agszzlmkxmznpc1xj0vzxkskrcfagfjvqsdyw1yp5yg6bsq272y";
23
};
24
25
-
patches = [
26
-
# Fix pending upstream inclusion for ncurses-6.3 support:
27
-
# https://github.com/lifelines/lifelines/pull/437
28
-
(fetchpatch {
29
-
name = "ncurses-6.3.patch";
30
-
url = "https://github.com/lifelines/lifelines/commit/e04ce2794d458c440787c191877fbbc0784447bd.patch";
31
-
sha256 = "1smnz4z5hfjas79bfvlnpw9x8199a5g0p9cvhf17zpcnz1432kg7";
32
-
})
33
-
];
34
-
35
buildInputs = [
36
gettext
37
libiconv
···
43
bison
44
];
45
46
-
meta = with lib; {
47
description = "Genealogy tool with ncurses interface";
48
homepage = "https://lifelines.github.io/lifelines/";
49
-
license = licenses.mit;
50
-
maintainers = with maintainers; [ disassembler ];
51
-
platforms = platforms.linux;
52
};
53
}
···
2
lib,
3
stdenv,
4
fetchFromGitHub,
0
5
gettext,
6
libiconv,
7
bison,
···
12
13
stdenv.mkDerivation {
14
pname = "lifelines";
15
+
version = "0-unstable-2025-01-05";
16
17
src = fetchFromGitHub {
18
owner = "lifelines";
19
repo = "lifelines";
20
+
rev = "fbc92b6585e5f642c59a5317a0f4d4573f51b2d6";
21
+
sha256 = "sha256-G/Sj3E8K4QDR4fJcipCKTXpQU19LOfOeLBp5k7uPwk4=";
22
};
23
0
0
0
0
0
0
0
0
0
0
24
buildInputs = [
25
gettext
26
libiconv
···
32
bison
33
];
34
35
+
meta = {
36
description = "Genealogy tool with ncurses interface";
37
homepage = "https://lifelines.github.io/lifelines/";
38
+
license = lib.licenses.mit;
39
+
maintainers = [ lib.maintainers.disassembler ];
40
+
platforms = lib.platforms.linux;
41
};
42
}