pngquant: 2.0.1 -> 2.6.0
Also remove meta.broken.
This commit is contained in:
parent
a8556bd5d7
commit
da390a48db
@ -1,16 +1,19 @@
|
|||||||
{ stdenv, fetchgit, libpng }:
|
{ stdenv, fetchFromGitHub, pkgconfig, libpng, zlib, lcms2 }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "pngquant-${version}";
|
name = "pngquant-${version}";
|
||||||
version = "2.0.1";
|
version = "2.6.0";
|
||||||
|
|
||||||
src = fetchgit {
|
src = fetchFromGitHub {
|
||||||
url = https://github.com/pornel/pngquant.git;
|
owner = "pornel";
|
||||||
rev = "refs/tags/${version}";
|
repo = "pngquant";
|
||||||
sha256 = "00mrv9wgxbwy517l8i4n7n3jpzirjdgi0zass3wj29i7xyipwlhf";
|
rev = version;
|
||||||
|
sha256 = "0sdh9cz330rhj6xvqk3sdhy0393qwyl349klk9r55g88rjp774s5";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ libpng ];
|
preConfigure = "patchShebangs .";
|
||||||
|
|
||||||
|
buildInputs = [ pkgconfig libpng zlib lcms2 ];
|
||||||
|
|
||||||
preInstall = ''
|
preInstall = ''
|
||||||
mkdir -p $out/bin
|
mkdir -p $out/bin
|
||||||
@ -18,10 +21,9 @@ stdenv.mkDerivation rec {
|
|||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
homepage = https://github.com/pornel/pngquant;
|
homepage = https://pngquant.org/;
|
||||||
description = "pngquant converts 24/32-bit RGBA PNGs to 8-bit palette with alpha channel preserved";
|
description = "A tool to convert 24/32-bit RGBA PNGs to 8-bit palette with alpha channel preserved";
|
||||||
platforms = platforms.all;
|
platforms = platforms.linux;
|
||||||
license = licenses.bsd2; # Not exactly bsd2, but alike
|
license = licenses.bsd2; # Not exactly bsd2, but alike
|
||||||
broken = true;
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user