1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-23 06:01:15 +00:00

Add Rubber, a LaTeX wrapper that does the right thing.

svn path=/nixpkgs/trunk/; revision=14551
This commit is contained in:
Ludovic Courtès 2009-03-16 10:42:51 +00:00
parent 3c7430198b
commit c2199227b4
2 changed files with 36 additions and 0 deletions

View file

@ -0,0 +1,32 @@
{ fetchurl, stdenv, python, texinfo }:
stdenv.mkDerivation rec {
name = "rubber-1.1";
src = fetchurl {
url = "http://ebeffara.free.fr/pub/${name}.tar.gz";
sha256 = "1xbkv8ll889933gyi2a5hj7hhh216k04gn8fwz5lfv5iz8s34gbq";
};
buildInputs = [ python texinfo ];
patchPhase = "substituteInPlace configure --replace which \"type -P\"";
meta = {
description = "Rubber, a wrapper for LaTeX and friends";
longDescription = ''
Rubber is a program whose purpose is to handle all tasks related
to the compilation of LaTeX documents. This includes compiling
the document itself, of course, enough times so that all
references are defined, and running BibTeX to manage
bibliographic references. Automatic execution of dvips to
produce PostScript documents is also included, as well as usage
of pdfLaTeX to produce PDF documents.
'';
license = "GPLv2+";
homepage = http://www.pps.jussieu.fr/~beffara/soft/rubber/;
};
}

View file

@ -1130,6 +1130,10 @@ let
inherit fetchurl stdenv libtorrent ncurses pkgconfig libsigcxx curl zlib openssl;
};
rubber = import ../tools/typesetting/rubber {
inherit fetchurl stdenv python texinfo;
};
rxp = import ../tools/text/xml/rxp {
inherit fetchurl stdenv;
};