unicode-paracode: update to Unicode 16.0.0 (#414007)

authored by Wolfgang Walther and committed by GitHub 911fb170 9cd5c938

+7 -9
+7 -9
pkgs/by-name/un/unicode-paracode/package.nix
··· 20 20 }; 21 21 22 22 ucdtxt = fetchurl { 23 - url = "https://www.unicode.org/Public/15.0.0/ucd/UnicodeData.txt"; 24 - sha256 = "sha256-gG6a7WUDcZfx7IXhK+bozYcPxWCLTeD//ZkPaJ83anM="; 23 + url = "https://www.unicode.org/Public/16.0.0/ucd/UnicodeData.txt"; 24 + sha256 = "sha256-/1jlgjvQlRZlZKAG5H0RETCBPc+L8jTvefpRqHDttI8="; 25 25 }; 26 26 27 27 nativeBuildInputs = [ installShellFiles ]; ··· 35 35 installManPage paracode.1 unicode.1 36 36 ''; 37 37 38 - passthru.updateScript = gitUpdater { 39 - rev-prefix = "v"; 40 - }; 38 + passthru.updateScript = gitUpdater { rev-prefix = "v"; }; 41 39 42 - meta = with lib; { 40 + meta = { 43 41 description = "Display unicode character properties"; 44 42 homepage = "https://github.com/garabik/unicode"; 45 - license = licenses.gpl3; 46 - maintainers = [ maintainers.woffs ]; 47 - platforms = platforms.all; 43 + license = lib.licenses.gpl3; 44 + maintainers = [ lib.maintainers.woffs ]; 45 + platforms = lib.platforms.all; 48 46 }; 49 47 }