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

This commit is contained in:
Wolfgang Walther 2025-07-04 18:12:24 +00:00 committed by GitHub
commit 911fb17000
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -20,8 +20,8 @@ python3Packages.buildPythonApplication rec {
}; };
ucdtxt = fetchurl { ucdtxt = fetchurl {
url = "https://www.unicode.org/Public/15.0.0/ucd/UnicodeData.txt"; url = "https://www.unicode.org/Public/16.0.0/ucd/UnicodeData.txt";
sha256 = "sha256-gG6a7WUDcZfx7IXhK+bozYcPxWCLTeD//ZkPaJ83anM="; sha256 = "sha256-/1jlgjvQlRZlZKAG5H0RETCBPc+L8jTvefpRqHDttI8=";
}; };
nativeBuildInputs = [ installShellFiles ]; nativeBuildInputs = [ installShellFiles ];
@ -35,15 +35,13 @@ python3Packages.buildPythonApplication rec {
installManPage paracode.1 unicode.1 installManPage paracode.1 unicode.1
''; '';
passthru.updateScript = gitUpdater { passthru.updateScript = gitUpdater { rev-prefix = "v"; };
rev-prefix = "v";
};
meta = with lib; { meta = {
description = "Display unicode character properties"; description = "Display unicode character properties";
homepage = "https://github.com/garabik/unicode"; homepage = "https://github.com/garabik/unicode";
license = licenses.gpl3; license = lib.licenses.gpl3;
maintainers = [ maintainers.woffs ]; maintainers = [ lib.maintainers.woffs ];
platforms = platforms.all; platforms = lib.platforms.all;
}; };
} }