summary refs log tree commit diff
path: root/pkgs/tools/graphics/pngquant/default.nix
blob: 78a2a7cb695e66685361a2dc4bf3cdeaa4a01c16 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ stdenv, fetchgit, pkgconfig, libpng, zlib, lcms2 }:

stdenv.mkDerivation rec {
  name = "pngquant-${version}";
  version = "2.9.1";

  src = fetchgit {
    url = "https://www.github.com/pornel/pngquant.git";
    rev = "refs/tags/${version}";
    sha256 = "0xhnrjsk55jy5q68f81y7l61c6x18i4fzkm3i4dgndrhri5g4n1q";
    fetchSubmodules = true;
  };

  preConfigure = "patchShebangs .";

  buildInputs = [ pkgconfig libpng zlib lcms2 ];

  meta = with stdenv.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.linux;
    license = licenses.gpl3;
    maintainers = [ maintainers.volth ];
  };
}