Added pangoxsl and xmlroff

svn path=/nixpkgs/trunk/; revision=3574
This commit is contained in:
Martin Bravenboer 2005-08-13 21:35:49 +00:00
parent 29005ceca7
commit 5ac3904860
3 changed files with 46 additions and 1 deletions

View File

@ -0,0 +1,15 @@
{stdenv, fetchurl, pkgconfig, glib, pango}:
stdenv.mkDerivation {
name = "pangoxsl-1.6.0.1";
src = fetchurl {
url = http://surfnet.dl.sourceforge.net/sourceforge/pangopdf/pangoxsl-1.6.0.1.tar.gz;
md5 = "3c2b9b3b77c9b725a2914db90f61f24b";
};
buildInputs = [
pkgconfig
glib
pango
];
}

View File

@ -178,7 +178,10 @@ rec {
};
xmlroff = (import ../tools/typesetting/xmlroff) {
inherit fetchurl stdenv;
inherit fetchurl stdenv pkgconfig libxml2 libxslt popt;
inherit (gtkLibs) glib pango gtk;
inherit (gnome) libgnomeprint;
inherit pangoxsl;
};
less = (import ../tools/misc/less) {
@ -712,6 +715,11 @@ rec {
inherit fetchurl stdenv x11 libtiff libjpeg libpng;
};
pangoxsl = (import ../development/libraries/pangoxsl) {
inherit fetchurl stdenv pkgconfig;
inherit (gtkLibs) glib pango;
};
qt3 = import ../development/libraries/qt-3 {
inherit fetchurl stdenv x11 zlib libjpeg libpng which mysql;
inherit (xlibs) libXft libXrender;

View File

@ -0,0 +1,22 @@
{ stdenv, fetchurl, pkgconfig, libxml2, libxslt, popt
, glib, pango, libgnomeprint, pangoxsl, gtk}:
stdenv.mkDerivation {
name = "xmlroff-0.3.4";
src = fetchurl {
url = http://surfnet.dl.sourceforge.net/sourceforge/xmlroff/xmlroff-0.3.4.tar.gz;
md5 = "f6432e8a66e6f934823463a3f127e4ca";
};
buildInputs = [
pkgconfig
libxml2
libxslt
glib
pango
libgnomeprint
pangoxsl
gtk
popt
];
}