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

28 lines
722 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, pkg-config, libpng, zlib, lcms2 }:
stdenv.mkDerivation rec {
pname = "pngquant";
version = "2.12.5";
2018-07-04 22:15:50 +01:00
src = fetchFromGitHub {
owner = "pornel";
repo = "pngquant";
rev = version;
sha256 = "0sq398iv5cacblz6pb4j2hn16cnszsbkahikdpfq84rb9bj0ya40";
2017-05-05 11:53:07 +01:00
fetchSubmodules = true;
};
preConfigure = "patchShebangs .";
nativeBuildInputs = [ pkg-config ];
buildInputs = [ libpng zlib lcms2 ];
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";
platforms = platforms.unix;
2017-05-05 11:53:07 +01:00
license = licenses.gpl3;
maintainers = [ maintainers.volth ];
};
}