2017-06-28 20:11:08 +02:00
|
|
|
{ stdenv, fetchurl, libpng, static ? false
|
|
|
|
, buildPlatform, hostPlatform
|
|
|
|
}:
|
2010-03-24 00:04:41 +01:00
|
|
|
|
|
|
|
# This package comes with its own copy of zlib, libpng and pngxtern
|
|
|
|
|
2014-04-01 01:37:10 +02:00
|
|
|
with stdenv.lib;
|
|
|
|
|
2010-03-24 00:04:41 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2016-04-08 08:42:12 +02:00
|
|
|
name = "optipng-0.7.6";
|
2010-03-24 00:04:41 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/optipng/${name}.tar.gz";
|
2016-04-08 08:42:12 +02:00
|
|
|
sha256 = "105yk5qykvhiahzag67gm36s2kplxf6qn5hay02md0nkrcgn6w28";
|
2010-03-24 00:04:41 +01:00
|
|
|
};
|
|
|
|
|
2014-04-01 01:37:10 +02:00
|
|
|
buildInputs = [ libpng ];
|
|
|
|
|
|
|
|
LDFLAGS = optional static "-static";
|
2017-08-16 10:25:02 +02:00
|
|
|
# Workaround for crash in cexcept.h. See
|
|
|
|
# https://github.com/NixOS/nixpkgs/issues/28106
|
|
|
|
preConfigure = ''
|
|
|
|
export LD=$CC
|
|
|
|
'';
|
|
|
|
|
2017-06-28 20:11:08 +02:00
|
|
|
configureFlags = [
|
|
|
|
"--with-system-zlib"
|
|
|
|
"--with-system-libpng"
|
|
|
|
] ++ stdenv.lib.optionals (hostPlatform != buildPlatform) [
|
|
|
|
#"-prefix=$out"
|
|
|
|
];
|
|
|
|
|
|
|
|
postInstall = if hostPlatform != buildPlatform && hostPlatform.isWindows then ''
|
|
|
|
mv "$out"/bin/optipng{,.exe}
|
|
|
|
'' else null;
|
2014-04-01 01:37:10 +02:00
|
|
|
|
2015-06-10 13:00:11 +02:00
|
|
|
meta = with stdenv.lib; {
|
2010-03-24 00:04:41 +01:00
|
|
|
homepage = http://optipng.sourceforge.net/;
|
|
|
|
description = "A PNG optimizer";
|
2015-06-10 13:00:11 +02:00
|
|
|
license = licenses.zlib;
|
2016-08-02 19:50:55 +02:00
|
|
|
platforms = platforms.unix;
|
2010-03-24 00:04:41 +01:00
|
|
|
};
|
|
|
|
}
|