2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, pkgconfig, libpng, zlib, lcms2 }:
|
2013-10-28 17:32:23 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "pngquant";
|
2019-08-23 04:32:21 +01:00
|
|
|
version = "2.12.5";
|
2013-10-28 17:32:23 +00:00
|
|
|
|
2018-07-04 22:15:50 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "pornel";
|
|
|
|
repo = "pngquant";
|
|
|
|
rev = version;
|
2019-08-23 04:32:21 +01:00
|
|
|
sha256 = "0sq398iv5cacblz6pb4j2hn16cnszsbkahikdpfq84rb9bj0ya40";
|
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
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://pngquant.org/";
|
2016-03-18 21:13:08 +00:00
|
|
|
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
|
|
|
};
|
|
|
|
}
|