2010-07-28 04:55:54 -07:00
|
|
|
{ stdenv, fetchurl, pkgconfig, ghostscript, gd, zlib, plotutils }:
|
|
|
|
|
2009-10-17 21:43:53 -07:00
|
|
|
stdenv.mkDerivation {
|
2014-03-03 02:08:42 -08:00
|
|
|
name = "pstoedit-3.62";
|
2009-10-17 21:43:53 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
2014-03-03 02:08:42 -08:00
|
|
|
url = mirror://sourceforge/pstoedit/pstoedit-3.62.tar.gz;
|
|
|
|
sha256 = "0j410dm9nqwa7n03yiyz0jwvln0jlqc3n9iv4nls33yl6x3c8x40";
|
2009-10-17 21:43:53 -07:00
|
|
|
};
|
|
|
|
|
2010-07-28 04:55:54 -07:00
|
|
|
buildInputs = [ pkgconfig ghostscript gd zlib plotutils ];
|
2009-10-17 21:43:53 -07:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "translates PostScript and PDF graphics into other vector formats";
|
|
|
|
homepage = http://www.helga-glunz.homepage.t-online.de/pstoedit;
|
2014-06-18 21:19:00 -07:00
|
|
|
license = stdenv.lib.licenses.gpl2;
|
2010-07-28 04:55:54 -07:00
|
|
|
maintainers = [ stdenv.lib.maintainers.marcweber ];
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2009-10-17 21:43:53 -07:00
|
|
|
};
|
|
|
|
}
|