nixpkgs/pkgs/misc/tex/dblatex/default.nix
Eelco Dolstra 46db02a5e3 * Fix xrefs and callouts that refer to xml:ids (rather than ids).
Will send upstream.

svn path=/nixpkgs/trunk/; revision=16312
2009-07-10 12:09:58 +00:00

30 lines
695 B
Nix

{stdenv, fetchurl, python, libxslt, tetex}:
stdenv.mkDerivation rec {
name = "dblatex-0.2.11";
src = fetchurl {
url = "mirror://sourceforge/dblatex/${name}.tar.bz2";
sha256 = "cc1bd2c1aca5f6d03ef8516437321f75eba604d2067efe65f2d07815f56f7205";
};
patches =
[ # Fix xrefs and callouts that refer to xml:ids (rather than ids).
./xmlid.patch
];
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";
};
}