2021-01-15 09:19:50 +00:00
|
|
|
{ lib, stdenv, fetchurl, libpng }:
|
2011-09-21 08:33:38 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2021-08-12 19:41:54 +01:00
|
|
|
pname = "pngcrush";
|
|
|
|
version = "1.8.13";
|
2011-09-21 08:33:38 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-08-12 19:41:54 +01:00
|
|
|
url = "mirror://sourceforge/pmt/pngcrush-${version}-nolib.tar.xz";
|
2018-01-28 18:14:09 +00:00
|
|
|
sha256 = "0l43c59d6v9l0g07z3q3ywhb8xb3vz74llv3mna0izk9bj6aqkiv";
|
2011-09-21 08:33:38 +01:00
|
|
|
};
|
|
|
|
|
2021-02-16 11:48:46 +00:00
|
|
|
makeFlags = [ "CC=${stdenv.cc.targetPrefix}cc" "LD=${stdenv.cc.targetPrefix}cc" ]; # gcc and/or clang compat
|
2016-01-09 16:35:27 +00:00
|
|
|
|
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 = {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://pmt.sourceforge.net/pngcrush";
|
2011-09-21 08:33:38 +01:00
|
|
|
description = "A PNG optimizer";
|
2021-01-15 09:19:50 +00:00
|
|
|
license = lib.licenses.free;
|
|
|
|
platforms = with lib.platforms; linux ++ darwin;
|
2011-09-21 08:33:38 +01:00
|
|
|
};
|
|
|
|
}
|