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

27 lines
705 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub }:
2018-09-28 22:18:49 +01:00
2019-06-01 04:13:43 +01:00
stdenv.mkDerivation rec {
pname = "libimagequant";
2020-11-28 10:25:27 +00:00
version = "2.13.1";
2018-09-28 22:18:49 +01:00
2019-06-01 04:13:43 +01:00
src = fetchFromGitHub {
owner = "ImageOptim";
repo = pname;
rev = version;
2020-11-28 10:25:27 +00:00
sha256 = "1543h1i59k2hbj2g8shcl8fvhz2silipacynwjgw412r38hkr33j";
2019-06-01 04:13:43 +01:00
};
2018-09-28 22:18:49 +01:00
2019-06-01 04:13:43 +01:00
preConfigure = ''
patchShebangs ./configure
'';
2018-09-28 22:18:49 +01:00
meta = with lib; {
2019-06-01 04:13:43 +01:00
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 = licenses.gpl3Plus;
platforms = platforms.unix;
maintainers = with maintainers; [ ma9e marsam ];
};
}