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:
parent
09d4027cc0
commit
dd3564aba9
|
@ -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
|
||||
'';
|
||||
|
||||
};
|
||||
}
|
||||
|
|
20
pkgs/tools/graphics/pstoedit/default.nix
Normal file
20
pkgs/tools/graphics/pstoedit/default.nix
Normal 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;
|
||||
};
|
||||
|
||||
}
|
|
@ -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;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue