about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2023-10-25 20:57:31 -0500
committerGitHub <noreply@github.com>2023-10-25 20:57:31 -0500
commit646514ac96ad0513394bb484d2041249de2b167f (patch)
tree365a9dea2c4bf732f35e34d598a54098cfee698e
parentfb97aa67abd5258fc482b92fdce3e905a81fac3c (diff)
parent456a1b9a9e11e933bdf2a4e023dfe1afbd3110dd (diff)
downloadnixlib-646514ac96ad0513394bb484d2041249de2b167f.tar
nixlib-646514ac96ad0513394bb484d2041249de2b167f.tar.gz
nixlib-646514ac96ad0513394bb484d2041249de2b167f.tar.bz2
nixlib-646514ac96ad0513394bb484d2041249de2b167f.tar.lz
nixlib-646514ac96ad0513394bb484d2041249de2b167f.tar.xz
nixlib-646514ac96ad0513394bb484d2041249de2b167f.tar.zst
nixlib-646514ac96ad0513394bb484d2041249de2b167f.zip
Merge pull request #262597 from trofi/utf8proc-update
utf8proc: 2.8.0 -> 2.9.0
-rw-r--r--pkgs/development/libraries/utf8proc/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/libraries/utf8proc/default.nix b/pkgs/development/libraries/utf8proc/default.nix
index f9a6bdd7002b..7bdb9747472b 100644
--- a/pkgs/development/libraries/utf8proc/default.nix
+++ b/pkgs/development/libraries/utf8proc/default.nix
@@ -7,13 +7,13 @@
 
 stdenv.mkDerivation rec {
   pname = "utf8proc";
-  version = "2.8.0";
+  version = "2.9.0";
 
   src = fetchFromGitHub {
     owner = "JuliaStrings";
     repo = pname;
     rev = "v${version}";
-    sha256 = "sha256-/lSD78kj133rpcSAOh8T8XFW/Z0c3JKkGQM5Z6DcMtU=";
+    sha256 = "sha256-Sgh8vTbclUV+lFZdR29PtNUy8F+9L/OAXk647B+l2mg=";
   };
 
   nativeBuildInputs = [ cmake ];