Unverified Commit 911fb170 authored by Wolfgang Walther's avatar Wolfgang Walther Committed by GitHub
Browse files

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

parents 9cd5c938 4eb04812
Loading
Loading
Loading
Loading
+7 −9
Original line number Diff line number Diff line
@@ -20,8 +20,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 ];
@@ -35,15 +35,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;
  };
}