2017-05-05 11:53:07 +01:00
|
|
|
{ stdenv, fetchgit, pkgconfig, libpng, zlib, lcms2 }:
|
2013-10-28 17:32:23 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "pngquant-${version}";
|
2018-02-18 18:57:16 +00:00
|
|
|
version = "2.11.7";
|
2013-10-28 17:32:23 +00:00
|
|
|
|
2017-05-05 11:53:07 +01:00
|
|
|
src = fetchgit {
|
|
|
|
url = "https://www.github.com/pornel/pngquant.git";
|
|
|
|
rev = "refs/tags/${version}";
|
2018-02-18 18:57:16 +00:00
|
|
|
sha256 = "1qr5qr2wznzp0v9xwyz4r3982rcm9kys913w8gwmv7qd1akvx2qh";
|
2017-05-05 11:53:07 +01:00
|
|
|
fetchSubmodules = true;
|
2013-10-28 17:32:23 +00:00
|
|
|
};
|
|
|
|
|
2017-05-08 09:47:17 +01:00
|
|
|
preConfigure = "patchShebangs .";
|
|
|
|
|
2017-09-05 22:26:13 +01: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 11:53:07 +01:00
|
|
|
license = licenses.gpl3;
|
|
|
|
maintainers = [ maintainers.volth ];
|
2013-10-28 17:32:23 +00:00
|
|
|
};
|
|
|
|
}
|