libimagequant: init at 2.12.1

This commit is contained in:
Sean Haugh 2018-09-28 16:18:49 -05:00
parent bc0d87a4f1
commit 276d3d8538
2 changed files with 30 additions and 0 deletions

View file

@ -0,0 +1,28 @@
{ stdenv, fetchFromGitHub, unzip }:
with stdenv;
let
version = "2.12.1";
in
mkDerivation {
name = "libimagequant-${version}";
src = fetchFromGitHub {
owner = "ImageOptim";
repo = "libimagequant";
rev = "${version}";
sha256 = "0r7zgsnhqci2rjilh9bzw43miwp669k6b7q16hdjzrq4nr0xpvbl";
};
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;
};
}

View file

@ -10735,6 +10735,8 @@ with pkgs;
libiec61883 = callPackage ../development/libraries/libiec61883 { };
libimagequant = callPackage ../development/libraries/libimagequant {};
libinfinity = callPackage ../development/libraries/libinfinity { };
libinput = callPackage ../development/libraries/libinput {