2017-02-07 08:01:33 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig, darwin, lib
|
2016-06-01 21:45:19 +01:00
|
|
|
, zlib, ghostscript, imagemagick, plotutils, gd
|
2017-02-07 08:01:33 +00:00
|
|
|
, libjpeg, libwebp, libiconv
|
2016-06-01 21:45:19 +01:00
|
|
|
}:
|
2010-07-28 12:55:54 +01:00
|
|
|
|
2016-05-14 06:06:24 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2020-01-07 07:23:43 +00:00
|
|
|
name = "pstoedit-3.75";
|
2009-10-18 05:43:53 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2016-05-14 06:06:24 +01:00
|
|
|
url = "mirror://sourceforge/pstoedit/${name}.tar.gz";
|
2020-01-07 07:23:43 +00:00
|
|
|
sha256 = "1kv46g2wsvsvcngkavxl5gnw3l6g5xqnh4kmyx4b39a01d8xiddp";
|
2009-10-18 05:43:53 +01:00
|
|
|
};
|
|
|
|
|
2018-07-10 23:58:06 +01:00
|
|
|
#
|
|
|
|
# Turn on "-rdb" option (REALLYDELAYBIND) by default to ensure compatibility with gs-9.22
|
|
|
|
#
|
|
|
|
patches = [ ./pstoedit-gs-9.22-compat.patch ];
|
|
|
|
|
2016-08-29 01:30:01 +01:00
|
|
|
outputs = [ "out" "dev" ];
|
2016-06-01 21:45:19 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2017-06-30 15:27:12 +01:00
|
|
|
buildInputs = [ zlib ghostscript imagemagick plotutils gd libjpeg libwebp ]
|
2017-02-07 08:01:33 +00:00
|
|
|
++ lib.optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks; [
|
|
|
|
libiconv ApplicationServices
|
|
|
|
]);
|
2009-10-18 05:43:53 +01:00
|
|
|
|
2017-06-30 15:27:12 +01: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@' ""
|
|
|
|
'';
|
|
|
|
|
2016-06-01 21:45:19 +01:00
|
|
|
meta = with stdenv.lib; {
|
2016-05-14 06:06:24 +01:00
|
|
|
description = "Translates PostScript and PDF graphics into other vector formats";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://sourceforge.net/projects/pstoedit/";
|
2016-06-01 21:45:19 +01:00
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = [ maintainers.marcweber ];
|
2017-02-07 08:01:33 +00:00
|
|
|
platforms = platforms.unix;
|
2009-10-18 05:43:53 +01:00
|
|
|
};
|
|
|
|
}
|