1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-21 13:10:33 +00:00

adding ps2edit

svn path=/nixpkgs/trunk/; revision=17863
This commit is contained in:
Marc Weber 2009-10-18 04:43:53 +00:00
parent 09d4027cc0
commit dd3564aba9
3 changed files with 27 additions and 0 deletions

View file

@ -52,6 +52,9 @@ stdenv.mkDerivation rec {
longDescription = ''
Inkscape is a feature-rich vector graphics editor that edits
files in the W3C SVG (Scalable Vector Graphics) file format.
If you want to import .eps files install ps2edit
'';
};
}

View file

@ -0,0 +1,20 @@
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;
};
}

View file

@ -1321,6 +1321,10 @@ let
inherit stdenv fetchurl ncurses;
};
pstoedit = import ../tools/graphics/pstoedit {
inherit fetchurl stdenv lib pkgconfig ghostscript gd zlib plotutils;
};
pv = import ../tools/misc/pv {
inherit fetchurl stdenv;
};