about summary refs log tree commit diff
diff options
context:
space:
mode:
authorfigsoda <figsoda@pm.me>2022-12-24 12:33:37 -0500
committerGitHub <noreply@github.com>2022-12-24 12:33:37 -0500
commitba01af9fc7560c1b22b3b613d805ff96ceaf6dd8 (patch)
tree376a56c55591da47e52c8ff867c7d211e3e3f86e
parentb1a9ae8dfd85d144ff1b268d6c7b47934358c9a1 (diff)
parente6cc2d4aa7d1329f06f15fd9f818ae13cb81927d (diff)
Merge pull request #207587 from kilianar/oxipng-8.0.0
oxipng: 7.0.0 -> 8.0.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 57c7a35e0b94f..a48f18af51e95 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 = "7.0.0";
+  version = "8.0.0";
   pname = "oxipng";
 
   src = fetchCrate {
     inherit version pname;
-    hash = "sha256-egAt2XypPFxsOuo8RsIXTmFdmBUe+eZh3p3vlnnx8wo=";
+    hash = "sha256-stTwsU9XK3lF4q2sDgb9A1KG1NnhCfVxYWRiBvlmiqQ=";
   };
 
-  cargoHash = "sha256-GbJU31UBdRai2JLEdx9sPh6rJWnU4RlDL8DooI9MCUg=";
+  cargoHash = "sha256-XMIsdv2AHMGs0tDEWe3cfplZU9CbqEkHd7L5eS+V7j0=";
 
   doCheck = !stdenv.isAarch64 && !stdenv.isDarwin;