nixpkgs/pkgs/development/libraries/libimagequant/default.nix

30 lines
774 B
Nix
Raw Normal View History

2018-09-28 22:18:49 +01:00
{ stdenv, fetchFromGitHub, unzip }:
with stdenv;
let
version = "2.12.2";
2018-09-28 22:18:49 +01:00
in
mkDerivation {
name = "libimagequant-${version}";
src = fetchFromGitHub {
owner = "ImageOptim";
repo = "libimagequant";
rev = "${version}";
sha256 = "1k61ifcjbp2lcrwqidflj99inkyhpbrw0hl1nzq1rjp5dnw2y5lw";
2018-09-28 22:18:49 +01:00
};
preConfigure = ''
patchShebangs ./configure
'';
meta = {
homepage = https://pngquant.org/lib/;
description = "Image quantization library";
longDescription = "Small, portable C library for high-quality conversion of RGBA images to 8-bit indexed-color (palette) images.";
license = lib.licenses.gpl3Plus;
platforms = lib.platforms.unix;
maintainers = with lib.maintainers; [ ma9e ];
2018-09-28 22:18:49 +01:00
};
}