2012-01-18 21:53:01 +01:00
|
|
|
{ stdenv, fetchurl, libpng }:
|
2011-09-21 09:33:38 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2014-09-04 15:34:42 +02:00
|
|
|
name = "pngcrush-1.7.77";
|
2011-09-21 09:33:38 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/pmt/${name}-nolib.tar.xz";
|
2014-09-04 15:34:42 +02:00
|
|
|
sha256 = "0404275rb6934aiwrysgapg0irbimcb2y8giqlc63gfspnvy67fa";
|
2011-09-21 09:33:38 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
configurePhase = ''
|
|
|
|
sed -i s,/usr,$out, Makefile
|
|
|
|
'';
|
|
|
|
|
2012-01-18 21:53:01 +01:00
|
|
|
buildInputs = [ libpng ];
|
2011-09-21 09:33:38 +02:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://pmt.sourceforge.net/pngcrush;
|
|
|
|
description = "A PNG optimizer";
|
|
|
|
license = "free";
|
|
|
|
platforms = with stdenv.lib.platforms; linux;
|
2013-12-01 12:39:19 +01:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ the-kenny ];
|
2011-09-21 09:33:38 +02:00
|
|
|
};
|
|
|
|
}
|