{ stdenv, fetchurl, libpng }: stdenv.mkDerivation rec { name = "pngcrush-1.7.69"; src = fetchurl { url = "mirror://sourceforge/pmt/${name}-nolib.tar.xz"; sha256 = "0j9nis6513hxd6klcv5559rwnfg7kawp2vqd4qgc1ax6wyvga4mw"; }; configurePhase = '' sed -i s,/usr,$out, Makefile ''; buildInputs = [ libpng ]; meta = { homepage = http://pmt.sourceforge.net/pngcrush; description = "A PNG optimizer"; license = "free"; platforms = with stdenv.lib.platforms; linux; maintainers = with stdenv.lib.maintainers; [ the-kenny ]; }; }