From 4eb048120ac1ebfe00db1e4c3e51c754acd36eb1 Mon Sep 17 00:00:00 2001 From: Frank Doepper Date: Wed, 4 Jun 2025 20:29:42 +0200 Subject: [PATCH] unicode-paracode: update to Unicode 16.0.0 --- pkgs/by-name/un/unicode-paracode/package.nix | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/pkgs/by-name/un/unicode-paracode/package.nix b/pkgs/by-name/un/unicode-paracode/package.nix index f2d6e7cb8d29..ec0fd1b76a37 100644 --- a/pkgs/by-name/un/unicode-paracode/package.nix +++ b/pkgs/by-name/un/unicode-paracode/package.nix @@ -19,8 +19,8 @@ python3Packages.buildPythonApplication rec { }; ucdtxt = fetchurl { - url = "https://www.unicode.org/Public/15.0.0/ucd/UnicodeData.txt"; - sha256 = "sha256-gG6a7WUDcZfx7IXhK+bozYcPxWCLTeD//ZkPaJ83anM="; + url = "https://www.unicode.org/Public/16.0.0/ucd/UnicodeData.txt"; + sha256 = "sha256-/1jlgjvQlRZlZKAG5H0RETCBPc+L8jTvefpRqHDttI8="; }; nativeBuildInputs = [ installShellFiles ]; @@ -34,15 +34,13 @@ python3Packages.buildPythonApplication rec { installManPage paracode.1 unicode.1 ''; - passthru.updateScript = gitUpdater { - rev-prefix = "v"; - }; + passthru.updateScript = gitUpdater { rev-prefix = "v"; }; - meta = with lib; { + meta = { description = "Display unicode character properties"; homepage = "https://github.com/garabik/unicode"; - license = licenses.gpl3; - maintainers = [ maintainers.woffs ]; - platforms = platforms.all; + license = lib.licenses.gpl3; + maintainers = [ lib.maintainers.woffs ]; + platforms = lib.platforms.all; }; }