libimagequant: 2.12.2 -> 2.12.3
This commit is contained in:
parent
ab421c0dc7
commit
788b13d3a1
@ -1,29 +1,26 @@
|
|||||||
{ stdenv, fetchFromGitHub, unzip }:
|
{ stdenv, fetchFromGitHub }:
|
||||||
|
|
||||||
with stdenv;
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "libimagequant";
|
||||||
|
version = "2.12.3";
|
||||||
|
|
||||||
let
|
|
||||||
version = "2.12.2";
|
|
||||||
in
|
|
||||||
mkDerivation {
|
|
||||||
name = "libimagequant-${version}";
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "ImageOptim";
|
owner = "ImageOptim";
|
||||||
repo = "libimagequant";
|
repo = pname;
|
||||||
rev = "${version}";
|
rev = version;
|
||||||
sha256 = "1k61ifcjbp2lcrwqidflj99inkyhpbrw0hl1nzq1rjp5dnw2y5lw";
|
sha256 = "0qsfq1kv1m5jzn9v9iz0bac66k4clcis1c9877qabnwzwmwma5v0";
|
||||||
};
|
};
|
||||||
|
|
||||||
preConfigure = ''
|
preConfigure = ''
|
||||||
patchShebangs ./configure
|
patchShebangs ./configure
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
homepage = https://pngquant.org/lib/;
|
homepage = "https://pngquant.org/lib/";
|
||||||
description = "Image quantization library";
|
description = "Image quantization library";
|
||||||
longDescription = "Small, portable C library for high-quality conversion of RGBA images to 8-bit indexed-color (palette) images.";
|
longDescription = "Small, portable C library for high-quality conversion of RGBA images to 8-bit indexed-color (palette) images.";
|
||||||
license = lib.licenses.gpl3Plus;
|
license = licenses.gpl3Plus;
|
||||||
platforms = lib.platforms.unix;
|
platforms = platforms.unix;
|
||||||
maintainers = with lib.maintainers; [ ma9e ];
|
maintainers = with maintainers; [ ma9e marsam ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user