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