* DBLaTeX updated to 0.3.2.
svn path=/nixpkgs/trunk/; revision=30523
This commit is contained in:
parent
ea96ea5d2f
commit
050ea14022
1 changed files with 5 additions and 7 deletions
|
@ -1,20 +1,18 @@
|
|||
{stdenv, fetchurl, python, libxslt, tetex}:
|
||||
{ stdenv, fetchurl, python, libxslt, tetex }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "dblatex-0.2.12";
|
||||
name = "dblatex-0.3.2";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/dblatex/${name}.tar.bz2";
|
||||
sha256 = "1wjghrlcn7hkr70nnyzzag1z57l5b1ck8i3r8zl7bw2rsrvqmyz2";
|
||||
sha256 = "0jg2acv2lyrbw06l8rr0id75lj1pws7xbsmryq58r3n13xzb1p7b";
|
||||
};
|
||||
|
||||
buildPhase = "true";
|
||||
|
||||
installPhase = "
|
||||
python ./setup.py install --prefix=$out
|
||||
";
|
||||
installPhase = "python ./setup.py install --prefix=$out";
|
||||
|
||||
buildInputs = [python libxslt tetex];
|
||||
buildInputs = [ python libxslt tetex ];
|
||||
|
||||
meta = {
|
||||
description = "A program to convert DocBook to DVI, PostScript or PDF via LaTeX or ConTeXt";
|
||||
|
|
Loading…
Reference in a new issue