2018-02-12 02:14:02 +01:00
|
|
|
{ stdenv, fetchFromGitHub, rustPlatform }:
|
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
2019-03-27 01:30:42 +01:00
|
|
|
version = "2.2.1";
|
|
|
|
pname = "oxipng";
|
2018-02-12 02:14:02 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "shssoichiro";
|
2019-03-27 01:30:42 +01:00
|
|
|
repo = pname;
|
2018-02-12 02:14:02 +01:00
|
|
|
rev = "v${version}";
|
2019-03-27 01:30:42 +01:00
|
|
|
sha256 = "1r195x3wdkshjwy23fpqsyyrw7iaj7yb39nhcnx9d4nhgq8w0pcl";
|
2018-02-12 02:14:02 +01:00
|
|
|
};
|
|
|
|
|
2019-05-25 13:03:08 +02:00
|
|
|
cargoSha256 = "1mjqkjrnh5gw39qjni574qh7k4p891xbb4ip2q69cm177ffbghiz";
|
2019-02-02 09:39:30 +01:00
|
|
|
|
|
|
|
# https://crates.io/crates/cloudflare-zlib#arm-vs-nightly-rust
|
|
|
|
cargoBuildFlags = [ "--features=cloudflare-zlib/arm-always" ];
|
2018-02-12 02:14:02 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = https://github.com/shssoichiro/oxipng;
|
2018-11-21 22:19:24 +01:00
|
|
|
description = "A multithreaded lossless PNG compression optimizer";
|
2018-02-12 02:14:02 +01:00
|
|
|
license = licenses.mit;
|
2018-08-05 16:20:38 +02:00
|
|
|
maintainers = with maintainers; [ dywedir ];
|
2018-02-12 02:14:02 +01:00
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|