summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorRobert Scott <code@humanleg.org.uk>2021-07-17 15:33:58 +0100
committerGitHub <noreply@github.com>2021-07-17 15:33:58 +0100
commit016c04d7a8f1e74ccf4168434da65a337e66df78 (patch)
tree01329d451053ecfc87ba3a529305c580c8dd83f2 /pkgs
parentdfbc940137c1b90a2978cba6f4d660516deaf20d (diff)
parente41504a21d7ddc26101d8c1f5b1b7f9ab6af4dd1 (diff)
downloadnixpkgs-016c04d7a8f1e74ccf4168434da65a337e66df78.tar
nixpkgs-016c04d7a8f1e74ccf4168434da65a337e66df78.tar.gz
nixpkgs-016c04d7a8f1e74ccf4168434da65a337e66df78.tar.bz2
nixpkgs-016c04d7a8f1e74ccf4168434da65a337e66df78.tar.lz
nixpkgs-016c04d7a8f1e74ccf4168434da65a337e66df78.tar.xz
nixpkgs-016c04d7a8f1e74ccf4168434da65a337e66df78.tar.zst
nixpkgs-016c04d7a8f1e74ccf4168434da65a337e66df78.zip
Merge pull request #130399 from dywedir/oxipng
oxipng: 4.0.3 -> 5.0.0
Diffstat (limited to 'pkgs')
-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 edffad57963..eab3996811e 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 = "4.0.3";
+  version = "5.0.0";
   pname = "oxipng";
 
   src = fetchCrate {
     inherit version pname;
-    sha256 = "sha256-lvVgoAZMIqmbS6yMul9Hf9PtneEVy+jDs3kU1jSBL2w=";
+    sha256 = "sha256-rTAY+3ViPkOsRjT9FHKnVOEGfLscuBdMAiQq+N9PRNU=";
   };
 
-  cargoSha256 = "sha256-sxvOFxSZCANBa/448SpjoLqk/HjqtaFrOhjrQro446Q=";
+  cargoSha256 = "sha256-Z5tA2bUE/5qGKXP2hIKo6tBegaSUALRzEZ/Xext3EWY=";
 
   doCheck = !stdenv.isAarch64 && !stdenv.isDarwin;