2017-06-28 20:11:08 +02:00
|
|
|
{ stdenv, fetchurl, libpng, static ? false
|
|
|
|
}:
|
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 {
|
2018-01-28 19:12:08 +01:00
|
|
|
name = "optipng-0.7.7";
|
2010-03-24 00:04:41 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/optipng/${name}.tar.gz";
|
2018-01-28 19:12:08 +01:00
|
|
|
sha256 = "0lj4clb851fzpaq446wgj0sfy922zs5l5misbpwv6w7qrqrz4cjg";
|
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"
|
2018-08-20 20:43:41 +02:00
|
|
|
] ++ stdenv.lib.optionals (stdenv.hostPlatform != stdenv.buildPlatform) [
|
2017-06-28 20:11:08 +02:00
|
|
|
#"-prefix=$out"
|
|
|
|
];
|
|
|
|
|
2018-08-20 20:43:41 +02:00
|
|
|
postInstall = if stdenv.hostPlatform != stdenv.buildPlatform && stdenv.hostPlatform.isWindows then ''
|
2017-06-28 20:11:08 +02:00
|
|
|
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; {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "http://optipng.sourceforge.net/";
|
2010-03-24 00:04:41 +01:00
|
|
|
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
|
|
|
};
|
|
|
|
}
|