dd3564aba9
svn path=/nixpkgs/trunk/; revision=17863
21 lines
588 B
Nix
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;
|
|
};
|
|
|
|
}
|