* Added dblatex, a DocBook -> PS/PDF/DVI converter.
svn path=/nixpkgs/trunk/; revision=9569
This commit is contained in:
parent
58873a9e3d
commit
a31f7e3a49
24
pkgs/misc/tex/dblatex/default.nix
Normal file
24
pkgs/misc/tex/dblatex/default.nix
Normal 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";
|
||||||
|
};
|
||||||
|
}
|
@ -4238,6 +4238,10 @@ rec {
|
|||||||
inherit fetchurl stdenv zlib libjpeg libpng libtiff pam;
|
inherit fetchurl stdenv zlib libjpeg libpng libtiff pam;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
dblatex = import ../misc/tex/dblatex {
|
||||||
|
inherit fetchurl stdenv python libxslt tetex;
|
||||||
|
};
|
||||||
|
|
||||||
dosbox = import ../misc/emulators/dosbox {
|
dosbox = import ../misc/emulators/dosbox {
|
||||||
inherit fetchurl stdenv SDL;
|
inherit fetchurl stdenv SDL;
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user