2012-01-18 21:53:01 +01:00
|
|
|
{ stdenv, fetchurl, libpng }:
|
2011-09-21 09:33:38 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2015-03-07 12:08:18 +01:00
|
|
|
name = "pngcrush-1.7.83";
|
2011-09-21 09:33:38 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/pmt/${name}-nolib.tar.xz";
|
2015-03-07 12:08:18 +01:00
|
|
|
sha256 = "0324l1czflplz49i1i3xs72pzi9p4f8h6yk626q5y81fn29kg5mj";
|
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";
|
2014-11-06 01:44:33 +01:00
|
|
|
license = stdenv.lib.licenses.free;
|
2011-09-21 09:33:38 +02:00
|
|
|
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
|
|
|
};
|
|
|
|
}
|