2016-06-01 13:45:19 -07:00
|
|
|
{ stdenv, fetchurl, pkgconfig
|
|
|
|
, zlib, ghostscript, imagemagick, plotutils, gd
|
|
|
|
, libjpeg, libwebp
|
|
|
|
}:
|
2010-07-28 04:55:54 -07:00
|
|
|
|
2016-05-13 22:06:24 -07:00
|
|
|
stdenv.mkDerivation rec {
|
2016-06-01 13:45:19 -07:00
|
|
|
name = "pstoedit-3.70";
|
2009-10-17 21:43:53 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
2016-05-13 22:06:24 -07:00
|
|
|
url = "mirror://sourceforge/pstoedit/${name}.tar.gz";
|
2016-06-01 13:45:19 -07:00
|
|
|
sha256 = "130kz0ghsrggdn70kygrmsy3n533hwd948q69vyvqz44yw9n3f06";
|
2009-10-17 21:43:53 -07:00
|
|
|
};
|
|
|
|
|
2016-06-01 13:45:19 -07:00
|
|
|
outputs = [ "dev" "out" ];
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ zlib ghostscript imagemagick plotutils gd libjpeg libwebp ];
|
2009-10-17 21:43:53 -07:00
|
|
|
|
2016-06-01 13:45:19 -07:00
|
|
|
meta = with stdenv.lib; {
|
2016-05-13 22:06:24 -07:00
|
|
|
description = "Translates PostScript and PDF graphics into other vector formats";
|
2016-06-01 13:45:19 -07:00
|
|
|
homepage = https://sourceforge.net/projects/pstoedit/;
|
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = [ maintainers.marcweber ];
|
|
|
|
platforms = platforms.linux;
|
2009-10-17 21:43:53 -07:00
|
|
|
};
|
|
|
|
}
|