* Added dblatex, a DocBook -> PS/PDF/DVI converter.

svn path=/nixpkgs/trunk/; revision=9569
This commit is contained in:
Eelco Dolstra 2007-11-01 14:37:23 +00:00
parent 58873a9e3d
commit a31f7e3a49
2 changed files with 28 additions and 0 deletions

View file

@ -0,0 +1,24 @@
{stdenv, fetchurl, python, libxslt, tetex}:
stdenv.mkDerivation {
name = "dblatex-0.2.7";
src = fetchurl {
url = mirror://sourceforge/dblatex/dblatex-0.2.7.tar.bz2;
sha256 = "0wcsfr2arcayq10fp06h2l7zlbn7l4ffrvzc2qs86103q5xismmr";
};
buildPhase = "true";
installPhase = "
python ./setup.py install --prefix=$out
";
buildInputs = [python libxslt tetex];
meta = {
description = "A program to convert DocBook to DVI, PostScript or PDF via LaTeX or ConTeXt";
homepage = http://dblatex.sourceforge.net/;
license = "GPL";
};
}

View file

@ -4238,6 +4238,10 @@ rec {
inherit fetchurl stdenv zlib libjpeg libpng libtiff pam;
};
dblatex = import ../misc/tex/dblatex {
inherit fetchurl stdenv python libxslt tetex;
};
dosbox = import ../misc/emulators/dosbox {
inherit fetchurl stdenv SDL;
};