about summary refs log tree commit diff
diff options
context:
space:
mode:
authorkilianar <mail@kilianar.de>2024-04-22 10:40:20 +0200
committerkilianar <mail@kilianar.de>2024-04-23 10:27:14 +0200
commit75d3b62efc6d2fee3626841ca11917a93bb636c9 (patch)
treed6519207e9ff6b0e50cc6c496251c432e1902d2a
parentc9d72a6fd49f7b20615019f05aededbb7a5f382c (diff)
oxipng: 9.0.0 -> 9.1.1
https://github.com/shssoichiro/oxipng/releases/tag/v9.1.0
-rw-r--r--pkgs/tools/graphics/oxipng/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/tools/graphics/oxipng/default.nix b/pkgs/tools/graphics/oxipng/default.nix
index 23f9692597a3a..4650db3e506d6 100644
--- a/pkgs/tools/graphics/oxipng/default.nix
+++ b/pkgs/tools/graphics/oxipng/default.nix
@@ -1,15 +1,15 @@
 { lib, stdenv, fetchCrate, rustPlatform }:
 
 rustPlatform.buildRustPackage rec {
-  version = "9.0.0";
+  version = "9.1.1";
   pname = "oxipng";
 
   src = fetchCrate {
     inherit version pname;
-    hash = "sha256-1OpSweosYiqtLqCcAw1EsAtBAYVc/VH8kRtVSpmTytM=";
+    hash = "sha256-I+1yQQEzhGApvHxPM8W1wySQtDglGp3V4vkwoTd92EU=";
   };
 
-  cargoHash = "sha256-kPdAfqMNOoQPSdv+VLRDUr6AXGPy47UnldXwvpwKp6s=";
+  cargoHash = "sha256-miXrQVFahz9WYRCduSF5+RSY4j/XNEt8lnSuOohBUFU=";
 
   doCheck = !stdenv.isAarch64 && !stdenv.isDarwin;