nixpkgs/pkgs/tools/graphics/pstoedit/default.nix
Marc Weber dd3564aba9 adding ps2edit
svn path=/nixpkgs/trunk/; revision=17863
2009-10-18 04:43:53 +00:00

21 lines
588 B
Nix

args: with args;
stdenv.mkDerivation {
name = "pstoedit-3.50";
src = fetchurl {
url = http://prdownloads.sourceforge.net/pstoedit/pstoedit-3.50.tar.gz;
sha256 = "04ap21fxj2zn6vj9mv7zknj4svcbkb1gxwfzxkw5i0sksx969c92";
};
buildInputs = [pkgconfig ghostscript gd zlib plotutils];
meta = {
description = "translates PostScript and PDF graphics into other vector formats";
homepage = http://www.helga-glunz.homepage.t-online.de/pstoedit;
license = "GPLv2";
maintainers = [args.lib.maintainers.marcweber];
platforms = args.lib.platforms.linux;
};
}