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
2
lib,
3
3
stdenv,
4
4
fetchFromGitHub,
5
5
-
fetchpatch,
6
5
gettext,
7
6
libiconv,
8
7
bison,
···
13
12
14
13
stdenv.mkDerivation {
15
14
pname = "lifelines";
16
16
-
version = "unstable-2019-05-07";
15
15
+
version = "0-unstable-2025-01-05";
17
16
18
17
src = fetchFromGitHub {
19
18
owner = "lifelines";
20
19
repo = "lifelines";
21
21
-
rev = "43f29285ed46fba322b6a14322771626e6b02c59";
22
22
-
sha256 = "1agszzlmkxmznpc1xj0vzxkskrcfagfjvqsdyw1yp5yg6bsq272y";
20
20
+
rev = "fbc92b6585e5f642c59a5317a0f4d4573f51b2d6";
21
21
+
sha256 = "sha256-G/Sj3E8K4QDR4fJcipCKTXpQU19LOfOeLBp5k7uPwk4=";
23
22
};
24
23
25
25
-
patches = [
26
26
-
# Fix pending upstream inclusion for ncurses-6.3 support:
27
27
-
# https://github.com/lifelines/lifelines/pull/437
28
28
-
(fetchpatch {
29
29
-
name = "ncurses-6.3.patch";
30
30
-
url = "https://github.com/lifelines/lifelines/commit/e04ce2794d458c440787c191877fbbc0784447bd.patch";
31
31
-
sha256 = "1smnz4z5hfjas79bfvlnpw9x8199a5g0p9cvhf17zpcnz1432kg7";
32
32
-
})
33
33
-
];
34
34
-
35
24
buildInputs = [
36
25
gettext
37
26
libiconv
···
43
32
bison
44
33
];
45
34
46
46
-
meta = with lib; {
35
35
+
meta = {
47
36
description = "Genealogy tool with ncurses interface";
48
37
homepage = "https://lifelines.github.io/lifelines/";
49
49
-
license = licenses.mit;
50
50
-
maintainers = with maintainers; [ disassembler ];
51
51
-
platforms = platforms.linux;
38
38
+
license = lib.licenses.mit;
39
39
+
maintainers = [ lib.maintainers.disassembler ];
40
40
+
platforms = lib.platforms.linux;
52
41
};
53
42
}