Merge pull request #260294 from kilianar/oxipng-9.0.0

oxipng: 8.0.0 -> 9.0.0
This commit is contained in:
lewo 2023-10-13 08:51:31 +02:00 committed by GitHub
commit f86bf09044
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,22 +1,22 @@
{ lib, stdenv, fetchCrate, rustPlatform }:
rustPlatform.buildRustPackage rec {
version = "8.0.0";
version = "9.0.0";
pname = "oxipng";
src = fetchCrate {
inherit version pname;
hash = "sha256-stTwsU9XK3lF4q2sDgb9A1KG1NnhCfVxYWRiBvlmiqQ=";
hash = "sha256-1OpSweosYiqtLqCcAw1EsAtBAYVc/VH8kRtVSpmTytM=";
};
cargoHash = "sha256-XMIsdv2AHMGs0tDEWe3cfplZU9CbqEkHd7L5eS+V7j0=";
cargoHash = "sha256-kPdAfqMNOoQPSdv+VLRDUr6AXGPy47UnldXwvpwKp6s=";
doCheck = !stdenv.isAarch64 && !stdenv.isDarwin;
meta = with lib; {
meta = {
homepage = "https://github.com/shssoichiro/oxipng";
description = "A multithreaded lossless PNG compression optimizer";
license = licenses.mit;
maintainers = with maintainers; [ dywedir ];
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ dywedir ];
};
}