oxipng: 9.0.0 -> 9.1.1

https://github.com/shssoichiro/oxipng/releases/tag/v9.1.0

kilianar 75d3b62e c9d72a6f

+3 -3
+3 -3
pkgs/tools/graphics/oxipng/default.nix
··· 1 1 { lib, stdenv, fetchCrate, rustPlatform }: 2 2 3 3 rustPlatform.buildRustPackage rec { 4 - version = "9.0.0"; 4 + version = "9.1.1"; 5 5 pname = "oxipng"; 6 6 7 7 src = fetchCrate { 8 8 inherit version pname; 9 - hash = "sha256-1OpSweosYiqtLqCcAw1EsAtBAYVc/VH8kRtVSpmTytM="; 9 + hash = "sha256-I+1yQQEzhGApvHxPM8W1wySQtDglGp3V4vkwoTd92EU="; 10 10 }; 11 11 12 - cargoHash = "sha256-kPdAfqMNOoQPSdv+VLRDUr6AXGPy47UnldXwvpwKp6s="; 12 + cargoHash = "sha256-miXrQVFahz9WYRCduSF5+RSY4j/XNEt8lnSuOohBUFU="; 13 13 14 14 doCheck = !stdenv.isAarch64 && !stdenv.isDarwin; 15 15