mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 04:02:55 +03:00
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 {
|
||||
name = "pngquant-${version}";
|
||||
version = "2.0.1";
|
||||
version = "2.6.0";
|
||||
|
||||
src = fetchgit {
|
||||
url = https://github.com/pornel/pngquant.git;
|
||||
rev = "refs/tags/${version}";
|
||||
sha256 = "00mrv9wgxbwy517l8i4n7n3jpzirjdgi0zass3wj29i7xyipwlhf";
|
||||
src = fetchFromGitHub {
|
||||
owner = "pornel";
|
||||
repo = "pngquant";
|
||||
rev = version;
|
||||
sha256 = "0sdh9cz330rhj6xvqk3sdhy0393qwyl349klk9r55g88rjp774s5";
|
||||
};
|
||||
|
||||
buildInputs = [ libpng ];
|
||||
preConfigure = "patchShebangs .";
|
||||
|
||||
buildInputs = [ pkgconfig libpng zlib lcms2 ];
|
||||
|
||||
preInstall = ''
|
||||
mkdir -p $out/bin
|
||||
@ -18,10 +21,9 @@ stdenv.mkDerivation rec {
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://github.com/pornel/pngquant;
|
||||
description = "pngquant converts 24/32-bit RGBA PNGs to 8-bit palette with alpha channel preserved";
|
||||
platforms = platforms.all;
|
||||
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
|
||||
broken = true;
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user