about summary refs log tree commit diff
path: root/pkgs/tools/graphics/oxipng
diff options
context:
space:
mode:
authorVladyslav Mykhailichenko <dywedir@pm.me>2018-11-21 23:19:24 +0200
committerVladyslav Mykhailichenko <dywedir@pm.me>2018-11-21 23:19:24 +0200
commita40fa7c046003e170850681e695649593512a509 (patch)
treef9931df80d00e0af0f32f8a881de5676b448ae68 /pkgs/tools/graphics/oxipng
parented9741790dd767d4137e04d9cb32751a376dea8a (diff)
oxipng: 2.1.0 -> 2.1.6
Diffstat (limited to 'pkgs/tools/graphics/oxipng')
-rw-r--r--pkgs/tools/graphics/oxipng/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/tools/graphics/oxipng/default.nix b/pkgs/tools/graphics/oxipng/default.nix
index 4c565e91a4de5..c5737554b777e 100644
--- a/pkgs/tools/graphics/oxipng/default.nix
+++ b/pkgs/tools/graphics/oxipng/default.nix
@@ -1,26 +1,26 @@
 { stdenv, fetchFromGitHub, rustPlatform }:
 
 rustPlatform.buildRustPackage rec {
-  version = "2.1.0";
+  version = "2.1.6";
   name = "oxipng-${version}";
 
   src = fetchFromGitHub {
     owner = "shssoichiro";
     repo = "oxipng";
     rev = "v${version}";
-    sha256 = "13rzkfb025y4i9dj66fgc74whgs90gyw861dccsj16cpfl6kh5z0";
+    sha256 = "0n3v2dxybfkf07hb4p2hbhhkwx907b85wzj8wa4whwil89igyrdm";
   };
 
-  cargoSha256 = "0l6ad8rnifd5hkv6x2cr0frdddsfwm1xd1v56imlglsjkgz56cva";
+  cargoSha256 = "1ycacwhwbn27i81jpp55m1446b9a50knlqv0kzkjcv8yf27213y9";
 
   meta = with stdenv.lib; {
     homepage = https://github.com/shssoichiro/oxipng;
-    description = "A lossless PNG compression optimizer";
+    description = "A multithreaded lossless PNG compression optimizer";
     license = licenses.mit;
     maintainers = with maintainers; [ dywedir ];
     platforms = platforms.all;
 
-    # macro is_arm_feature_detected! is unstable
+    # Needs newer/unstable rust: error[E0658]: macro is_arm_feature_detected! is unstable
     broken = stdenv.isAarch64;
   };
 }