887295fd2d
@the-kenny did a good job in the past and is set as maintainer in many package, however since 2017-2018 he stopped contributing. To create less confusion in pull requests when people try to request his feedback, I removed him as maintainer from all packages.
26 lines
606 B
Nix
26 lines
606 B
Nix
{ stdenv, fetchurl, libpng }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "pngcrush-1.8.13";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/pmt/${name}-nolib.tar.xz";
|
|
sha256 = "0l43c59d6v9l0g07z3q3ywhb8xb3vz74llv3mna0izk9bj6aqkiv";
|
|
};
|
|
|
|
makeFlags = [ "CC=cc" "LD=cc" ]; # gcc and/or clang compat
|
|
|
|
configurePhase = ''
|
|
sed -i s,/usr,$out, Makefile
|
|
'';
|
|
|
|
buildInputs = [ libpng ];
|
|
|
|
meta = {
|
|
homepage = "http://pmt.sourceforge.net/pngcrush";
|
|
description = "A PNG optimizer";
|
|
license = stdenv.lib.licenses.free;
|
|
platforms = with stdenv.lib.platforms; linux ++ darwin;
|
|
};
|
|
}
|