2012-01-18 20:53:01 +00:00
|
|
|
{ stdenv, fetchurl, libpng }:
|
2011-09-21 08:33:38 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2015-01-19 14:47:16 +00:00
|
|
|
name = "pngcrush-1.7.82";
|
2011-09-21 08:33:38 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/pmt/${name}-nolib.tar.xz";
|
2015-01-19 14:47:16 +00:00
|
|
|
sha256 = "1cxg0a6x7sq0dh9ia8isgx3awwx1db96wq4n22rs31sm3niiw0fl";
|
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";
|
2014-11-06 00:44:33 +00:00
|
|
|
license = stdenv.lib.licenses.free;
|
2011-09-21 08:33:38 +01:00
|
|
|
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
|
|
|
};
|
|
|
|
}
|