2018-07-04 21:15:50 +00:00
|
|
|
{ stdenv, fetchFromGitHub, pkgconfig, libpng, zlib, lcms2 }:
|
2013-10-28 17:32:23 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "pngquant";
|
2018-07-04 21:15:50 +00:00
|
|
|
version = "2.12.1";
|
2013-10-28 17:32:23 +00:00
|
|
|
|
2018-07-04 21:15:50 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "pornel";
|
|
|
|
repo = "pngquant";
|
|
|
|
rev = version;
|
|
|
|
sha256 = "0jdvry3kvmmxcgwf5a3zbfz0idl6yl3700ag7pf8sk4lg4qp0llp";
|
2017-05-05 10:53:07 +00:00
|
|
|
fetchSubmodules = true;
|
2013-10-28 17:32:23 +00:00
|
|
|
};
|
|
|
|
|
2017-05-08 08:47:17 +00:00
|
|
|
preConfigure = "patchShebangs .";
|
|
|
|
|
2017-09-05 21:26:13 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ libpng zlib lcms2 ];
|
2013-10-28 17:32:23 +00:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2016-03-18 21:13:08 +00:00
|
|
|
homepage = https://pngquant.org/;
|
|
|
|
description = "A tool to convert 24/32-bit RGBA PNGs to 8-bit palette with alpha channel preserved";
|
2018-01-19 16:13:23 +00:00
|
|
|
platforms = platforms.unix;
|
2017-05-05 10:53:07 +00:00
|
|
|
license = licenses.gpl3;
|
|
|
|
maintainers = [ maintainers.volth ];
|
2013-10-28 17:32:23 +00:00
|
|
|
};
|
|
|
|
}
|