oxipng: 1.0.1 -> 2.1.0 (#44488)

authored by Vladyslav M and committed by xeji 9f9e5d43 3dc65650

+7 -3
+7 -3
pkgs/tools/graphics/oxipng/default.nix
··· 1 { stdenv, fetchFromGitHub, rustPlatform }: 2 3 rustPlatform.buildRustPackage rec { 4 - version = "1.0.1"; 5 name = "oxipng-${version}"; 6 7 src = fetchFromGitHub { 8 owner = "shssoichiro"; 9 repo = "oxipng"; 10 rev = "v${version}"; 11 - sha256 = "0w39f0dhq9cxk25vy0wh8vicxyckvj1vmglx5va4550i3q0hsrws"; 12 }; 13 14 - cargoSha256 = "00nbx6n73yl4ax05pqkmim1vhy0pymgz5la1cc4y18gjbjjj9w4h"; 15 16 meta = with stdenv.lib; { 17 homepage = https://github.com/shssoichiro/oxipng; 18 description = "A lossless PNG compression optimizer"; 19 license = licenses.mit; 20 platforms = platforms.all; 21 }; 22 }
··· 1 { stdenv, fetchFromGitHub, rustPlatform }: 2 3 rustPlatform.buildRustPackage rec { 4 + version = "2.1.0"; 5 name = "oxipng-${version}"; 6 7 src = fetchFromGitHub { 8 owner = "shssoichiro"; 9 repo = "oxipng"; 10 rev = "v${version}"; 11 + sha256 = "13rzkfb025y4i9dj66fgc74whgs90gyw861dccsj16cpfl6kh5z0"; 12 }; 13 14 + cargoSha256 = "0l6ad8rnifd5hkv6x2cr0frdddsfwm1xd1v56imlglsjkgz56cva"; 15 16 meta = with stdenv.lib; { 17 homepage = https://github.com/shssoichiro/oxipng; 18 description = "A lossless PNG compression optimizer"; 19 license = licenses.mit; 20 + maintainers = with maintainers; [ dywedir ]; 21 platforms = platforms.all; 22 + 23 + # macro is_arm_feature_detected! is unstable 24 + broken = stdenv.isAarch64; 25 }; 26 }