summary refs log tree commit diff
path: root/pkgs/tools/typesetting/rubber/default.nix
blob: 8344735606ca8a8e0d4e70c421fc82225f3d158b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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 = stdenv.lib.licenses.gpl2Plus;

    homepage = http://www.pps.jussieu.fr/~beffara/soft/rubber/;
  };
}