From e6cc2d4aa7d1329f06f15fd9f818ae13cb81927d Mon Sep 17 00:00:00 2001 From: kilianar Date: Sat, 24 Dec 2022 17:09:34 +0100 Subject: [PATCH] oxipng: 7.0.0 -> 8.0.0 https://github.com/shssoichiro/oxipng/releases/tag/v8.0.0 --- pkgs/tools/graphics/oxipng/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/graphics/oxipng/default.nix b/pkgs/tools/graphics/oxipng/default.nix index 57c7a35e0b94..a48f18af51e9 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;