nixpkgs/pkgs/tools/graphics/pstoedit/default.nix

21 lines
588 B
Nix
Raw Normal View History

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;
};
}