summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2009-03-16 10:42:51 +0000
committerLudovic Courtès <ludo@gnu.org>2009-03-16 10:42:51 +0000
commitc2199227b4322ef552f7c6723b5a39602ff47373 (patch)
treecbeb1d54b8335a37ddb264d432b967fc3ac3afa8 /pkgs
parent3c7430198b0e9004146ece27bfbe1b1e4837d31e (diff)
downloadnixlib-c2199227b4322ef552f7c6723b5a39602ff47373.tar
nixlib-c2199227b4322ef552f7c6723b5a39602ff47373.tar.gz
nixlib-c2199227b4322ef552f7c6723b5a39602ff47373.tar.bz2
nixlib-c2199227b4322ef552f7c6723b5a39602ff47373.tar.lz
nixlib-c2199227b4322ef552f7c6723b5a39602ff47373.tar.xz
nixlib-c2199227b4322ef552f7c6723b5a39602ff47373.tar.zst
nixlib-c2199227b4322ef552f7c6723b5a39602ff47373.zip
Add Rubber, a LaTeX wrapper that does the right thing.
svn path=/nixpkgs/trunk/; revision=14551
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/tools/typesetting/rubber/default.nix32
-rw-r--r--pkgs/top-level/all-packages.nix4
2 files changed, 36 insertions, 0 deletions
diff --git a/pkgs/tools/typesetting/rubber/default.nix b/pkgs/tools/typesetting/rubber/default.nix
new file mode 100644
index 000000000000..054632533a11
--- /dev/null
+++ b/pkgs/tools/typesetting/rubber/default.nix
@@ -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/;
+  };
+}
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index cad17937db3b..536a3ad6e798 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -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;
   };