summary refs log tree commit diff
path: root/pkgs/tools/graphics/pngquant/default.nix
blob: 985b8a1c59d5114683743ed09d3100bfa1be7331 (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
26
27
28
29
{ stdenv, fetchFromGitHub, pkgconfig, libpng, zlib, lcms2 }:

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

  src = fetchFromGitHub {
    owner = "pornel";
    repo = "pngquant";
    rev = version;
    sha256 = "0sdh9cz330rhj6xvqk3sdhy0393qwyl349klk9r55g88rjp774s5";
  };

  preConfigure = "patchShebangs .";

  buildInputs = [ pkgconfig libpng zlib lcms2 ];

  preInstall = ''
    mkdir -p $out/bin
    export PREFIX=$out
  '';

  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.bsd2; # Not exactly bsd2, but alike
  };
}