nixpkgs/pkgs/tools/graphics/pngquant/default.nix

31 lines
850 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, pkg-config, libpng, zlib, lcms2 }:
stdenv.mkDerivation rec {
pname = "pngquant";
2021-05-02 21:59:08 +00:00
version = "2.14.1";
2018-07-04 21:15:50 +00:00
src = fetchFromGitHub {
2021-05-02 21:59:08 +00:00
owner = "kornelski";
2018-07-04 21:15:50 +00:00
repo = "pngquant";
rev = version;
2021-05-02 21:59:08 +00:00
sha256 = "054hi33qp3jc7hv0141wi8drwdg24v5zfp8znwjmz4mcdls8vxbb";
2017-05-05 10:53:07 +00:00
fetchSubmodules = true;
};
preConfigure = "patchShebangs .";
nativeBuildInputs = [ pkg-config ];
buildInputs = [ libpng zlib lcms2 ];
2021-05-02 21:59:08 +00:00
doCheck = true;
meta = with lib; {
homepage = "https://pngquant.org/";
description = "A tool to convert 24/32-bit RGBA PNGs to 8-bit palette with alpha channel preserved";
2021-05-02 21:59:08 +00:00
changelog = "https://github.com/kornelski/pngquant/raw/${version}/CHANGELOG";
platforms = platforms.unix;
2021-05-02 21:59:08 +00:00
license = with licenses; [ gpl3Plus hpnd bsd2 ];
2017-05-05 10:53:07 +00:00
maintainers = [ maintainers.volth ];
};
}