nixpkgs/pkgs/tools/graphics/pstoedit/default.nix
Eelco Dolstra 6609710409 * Get rid of many instances of "args: with args;", and other coding
guidelines violations.
* Updated libsamplerate to 0.1.7.

svn path=/nixpkgs/trunk/; revision=22782
2010-07-28 11:55:54 +00:00

21 lines
646 B
Nix

{ stdenv, fetchurl, pkgconfig, ghostscript, gd, zlib, plotutils }:
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 = [ stdenv.lib.maintainers.marcweber ];
platforms = stdenv.lib.platforms.linux;
};
}