pngquant: 2.6.0 -> 2.9.1
This commit is contained in:
parent
d95cd1b24e
commit
76b5d53067
1 changed files with 9 additions and 15 deletions
|
@ -1,29 +1,23 @@
|
|||
{ stdenv, fetchFromGitHub, pkgconfig, libpng, zlib, lcms2 }:
|
||||
{ stdenv, fetchgit, pkgconfig, libpng, zlib, lcms2 }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "pngquant-${version}";
|
||||
version = "2.6.0";
|
||||
version = "2.9.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "pornel";
|
||||
repo = "pngquant";
|
||||
rev = version;
|
||||
sha256 = "0sdh9cz330rhj6xvqk3sdhy0393qwyl349klk9r55g88rjp774s5";
|
||||
src = fetchgit {
|
||||
url = "https://www.github.com/pornel/pngquant.git";
|
||||
rev = "refs/tags/${version}";
|
||||
sha256 = "0xhnrjsk55jy5q68f81y7l61c6x18i4fzkm3i4dgndrhri5g4n1q";
|
||||
fetchSubmodules = true;
|
||||
};
|
||||
|
||||
preConfigure = "patchShebangs .";
|
||||
|
||||
buildInputs = [ pkgconfig libpng zlib lcms2 ];
|
||||
|
||||
preInstall = ''
|
||||
mkdir -p $out/bin
|
||||
export PREFIX=$out
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://pngquant.org/;
|
||||
description = "A tool to convert 24/32-bit RGBA PNGs to 8-bit palette with alpha channel preserved";
|
||||
platforms = platforms.linux;
|
||||
license = licenses.bsd2; # Not exactly bsd2, but alike
|
||||
license = licenses.gpl3;
|
||||
maintainers = [ maintainers.volth ];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue