2021-01-17 01:17:16 -08:00
|
|
|
{ lib, stdenv, fetchFromGitHub, pkg-config, libpng, zlib, lcms2 }:
|
2013-10-28 10:32:23 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "pngquant";
|
2021-05-02 14:59:08 -07:00
|
|
|
version = "2.14.1";
|
2013-10-28 10:32:23 -07:00
|
|
|
|
2018-07-04 14:15:50 -07:00
|
|
|
src = fetchFromGitHub {
|
2021-05-02 14:59:08 -07:00
|
|
|
owner = "kornelski";
|
2018-07-04 14:15:50 -07:00
|
|
|
repo = "pngquant";
|
|
|
|
rev = version;
|
2021-05-02 14:59:08 -07:00
|
|
|
sha256 = "054hi33qp3jc7hv0141wi8drwdg24v5zfp8znwjmz4mcdls8vxbb";
|
2017-05-05 03:53:07 -07:00
|
|
|
fetchSubmodules = true;
|
2013-10-28 10:32:23 -07:00
|
|
|
};
|
|
|
|
|
2017-05-08 01:47:17 -07:00
|
|
|
preConfigure = "patchShebangs .";
|
|
|
|
|
2021-01-17 01:17:16 -08:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2017-09-05 14:26:13 -07:00
|
|
|
buildInputs = [ libpng zlib lcms2 ];
|
2013-10-28 10:32:23 -07:00
|
|
|
|
2021-05-02 14:59:08 -07:00
|
|
|
doCheck = true;
|
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://pngquant.org/";
|
2016-03-18 14:13:08 -07:00
|
|
|
description = "A tool to convert 24/32-bit RGBA PNGs to 8-bit palette with alpha channel preserved";
|
2021-05-02 14:59:08 -07:00
|
|
|
changelog = "https://github.com/kornelski/pngquant/raw/${version}/CHANGELOG";
|
2018-01-19 08:13:23 -08:00
|
|
|
platforms = platforms.unix;
|
2021-05-02 14:59:08 -07:00
|
|
|
license = with licenses; [ gpl3Plus hpnd bsd2 ];
|
2017-05-05 03:53:07 -07:00
|
|
|
maintainers = [ maintainers.volth ];
|
2013-10-28 10:32:23 -07:00
|
|
|
};
|
|
|
|
}
|