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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

33 lines
915 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, pkg-config, libpng, zlib, lcms2 }:
stdenv.mkDerivation rec {
pname = "pngquant";
2021-12-08 13:12:27 +01:00
version = "2.17.0";
2018-07-04 23:15:50 +02:00
src = fetchFromGitHub {
2021-05-02 23:59:08 +02:00
owner = "kornelski";
2018-07-04 23:15:50 +02:00
repo = "pngquant";
rev = version;
2021-12-08 13:12:27 +01:00
sha256 = "sha256-D2KNn6AJ4eIHeb/2Oo1Wf0djMCXTtVGrua0D6z7+9V4=";
2017-05-05 12:53:07 +02:00
fetchSubmodules = true;
};
preConfigure = "patchShebangs .";
configureFlags = lib.optionals (!stdenv.hostPlatform.isx86) [ "--disable-sse" ];
2021-11-12 20:10:58 +01:00
nativeBuildInputs = [ pkg-config ];
buildInputs = [ libpng zlib lcms2 ];
2021-05-02 23:59:08 +02: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 23:59:08 +02:00
changelog = "https://github.com/kornelski/pngquant/raw/${version}/CHANGELOG";
platforms = platforms.unix;
2021-05-02 23:59:08 +02:00
license = with licenses; [ gpl3Plus hpnd bsd2 ];
maintainers = [ ];
};
}