* Added t1lib, a library for Type 1 font support. Enabled it in xpdf.

svn path=/nixpkgs/trunk/; revision=4328
This commit is contained in:
Eelco Dolstra
2005-12-02 23:21:40 +00:00
parent 6281842b45
commit db8da13e0d
3 changed files with 23 additions and 4 deletions

View File

@@ -0,0 +1,11 @@
{stdenv, fetchurl, x11, libXaw}:
stdenv.mkDerivation {
name = "t1lib-5.1.0";
src = fetchurl {
url = ftp://ftp.nluug.nl/pub/metalab/libs/graphics/t1lib-5.1.0.tar.gz;
md5 = "a05bed4aa63637052e60690ccde70421";
};
buildInputs = [x11 libXaw];
makeFlags = "without_doc";
}