nixpkgs-suyu/pkgs/tools/graphics/optipng/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

45 lines
1.1 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, libpng
, static ? stdenv.hostPlatform.isStatic
}:
# This package comes with its own copy of zlib, libpng and pngxtern
2021-01-15 10:19:50 +01:00
with lib;
stdenv.mkDerivation rec {
pname = "optipng";
version = "0.7.7";
src = fetchurl {
url = "mirror://sourceforge/optipng/optipng-${version}.tar.gz";
2018-01-28 19:12:08 +01:00
sha256 = "0lj4clb851fzpaq446wgj0sfy922zs5l5misbpwv6w7qrqrz4cjg";
};
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
'';
configureFlags = [
"--with-system-zlib"
"--with-system-libpng"
2021-01-15 10:19:50 +01:00
] ++ lib.optionals (stdenv.hostPlatform != stdenv.buildPlatform) [
#"-prefix=$out"
];
postInstall = if stdenv.hostPlatform != stdenv.buildPlatform && stdenv.hostPlatform.isWindows then ''
mv "$out"/bin/optipng{,.exe}
'' else null;
meta = with lib; {
homepage = "http://optipng.sourceforge.net/";
description = "A PNG optimizer";
2015-06-10 13:00:11 +02:00
license = licenses.zlib;
platforms = platforms.unix;
};
}