nixpkgs/pkgs/tools/graphics/pstoedit/default.nix

40 lines
1.2 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, pkg-config, darwin, lib
, zlib, ghostscript, imagemagick, plotutils, gd
, libjpeg, libwebp, libiconv
}:
stdenv.mkDerivation rec {
2020-01-07 07:23:43 +00:00
name = "pstoedit-3.75";
src = fetchurl {
url = "mirror://sourceforge/pstoedit/${name}.tar.gz";
2020-01-07 07:23:43 +00:00
sha256 = "1kv46g2wsvsvcngkavxl5gnw3l6g5xqnh4kmyx4b39a01d8xiddp";
};
#
# Turn on "-rdb" option (REALLYDELAYBIND) by default to ensure compatibility with gs-9.22
#
patches = [ ./pstoedit-gs-9.22-compat.patch ];
outputs = [ "out" "dev" ];
nativeBuildInputs = [ pkg-config ];
2017-06-30 14:27:12 +00:00
buildInputs = [ zlib ghostscript imagemagick plotutils gd libjpeg libwebp ]
++ lib.optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks; [
libiconv ApplicationServices
]);
2017-06-30 14:27:12 +00:00
# '@LIBPNG_LDFLAGS@' is no longer substituted by autoconf (the code is commented out)
# so we need to remove it from the pkg-config file as well
preConfigure = ''
substituteInPlace config/pstoedit.pc.in --replace '@LIBPNG_LDFLAGS@' ""
'';
meta = with lib; {
description = "Translates PostScript and PDF graphics into other vector formats";
homepage = "https://sourceforge.net/projects/pstoedit/";
license = licenses.gpl2;
maintainers = [ maintainers.marcweber ];
platforms = platforms.unix;
};
}