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