oxipng: 8.0.0 -> 9.0.0

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

kilianar e6a97099 a68655c5

+6 -6
+6 -6
pkgs/tools/graphics/oxipng/default.nix
··· 1 1 { lib, stdenv, fetchCrate, rustPlatform }: 2 2 3 3 rustPlatform.buildRustPackage rec { 4 - version = "8.0.0"; 4 + version = "9.0.0"; 5 5 pname = "oxipng"; 6 6 7 7 src = fetchCrate { 8 8 inherit version pname; 9 - hash = "sha256-stTwsU9XK3lF4q2sDgb9A1KG1NnhCfVxYWRiBvlmiqQ="; 9 + hash = "sha256-1OpSweosYiqtLqCcAw1EsAtBAYVc/VH8kRtVSpmTytM="; 10 10 }; 11 11 12 - cargoHash = "sha256-XMIsdv2AHMGs0tDEWe3cfplZU9CbqEkHd7L5eS+V7j0="; 12 + cargoHash = "sha256-kPdAfqMNOoQPSdv+VLRDUr6AXGPy47UnldXwvpwKp6s="; 13 13 14 14 doCheck = !stdenv.isAarch64 && !stdenv.isDarwin; 15 15 16 - meta = with lib; { 16 + meta = { 17 17 homepage = "https://github.com/shssoichiro/oxipng"; 18 18 description = "A multithreaded lossless PNG compression optimizer"; 19 - license = licenses.mit; 20 - maintainers = with maintainers; [ dywedir ]; 19 + license = lib.licenses.mit; 20 + maintainers = with lib.maintainers; [ dywedir ]; 21 21 }; 22 22 }