lifelines: unstable-2019-05-07 -> 0-unstable-2025-01-05

+7 -18
+7 -18
pkgs/by-name/li/lifelines/package.nix
··· 2 2 lib, 3 3 stdenv, 4 4 fetchFromGitHub, 5 - fetchpatch, 6 5 gettext, 7 6 libiconv, 8 7 bison, ··· 13 12 14 13 stdenv.mkDerivation { 15 14 pname = "lifelines"; 16 - version = "unstable-2019-05-07"; 15 + version = "0-unstable-2025-01-05"; 17 16 18 17 src = fetchFromGitHub { 19 18 owner = "lifelines"; 20 19 repo = "lifelines"; 21 - rev = "43f29285ed46fba322b6a14322771626e6b02c59"; 22 - sha256 = "1agszzlmkxmznpc1xj0vzxkskrcfagfjvqsdyw1yp5yg6bsq272y"; 20 + rev = "fbc92b6585e5f642c59a5317a0f4d4573f51b2d6"; 21 + sha256 = "sha256-G/Sj3E8K4QDR4fJcipCKTXpQU19LOfOeLBp5k7uPwk4="; 23 22 }; 24 23 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 24 buildInputs = [ 36 25 gettext 37 26 libiconv ··· 43 32 bison 44 33 ]; 45 34 46 - meta = with lib; { 35 + meta = { 47 36 description = "Genealogy tool with ncurses interface"; 48 37 homepage = "https://lifelines.github.io/lifelines/"; 49 - license = licenses.mit; 50 - maintainers = with maintainers; [ disassembler ]; 51 - platforms = platforms.linux; 38 + license = lib.licenses.mit; 39 + maintainers = [ lib.maintainers.disassembler ]; 40 + platforms = lib.platforms.linux; 52 41 }; 53 42 }