summary refs log tree commit diff
path: root/pkgs/tools/typesetting/rubber
diff options
context:
space:
mode:
authorThomas Tuegel <ttuegel@gmail.com>2015-12-09 16:24:17 -0600
committerThomas Tuegel <ttuegel@gmail.com>2015-12-09 16:24:17 -0600
commitaab20cdc510dc2cf109061992acd02bd19415f7d (patch)
tree1ed31a4a0eafa09d6af01e1730f9c6ee8912b72b /pkgs/tools/typesetting/rubber
parent0a64071932ce1404c371d5b3b12eebb459a5356a (diff)
rubber: 1.1 -> 1.3
* version upgrade
* minor formatting change
* assign ttuegel as maintainer
Diffstat (limited to 'pkgs/tools/typesetting/rubber')
-rw-r--r--pkgs/tools/typesetting/rubber/default.nix16
1 files changed, 7 insertions, 9 deletions
diff --git a/pkgs/tools/typesetting/rubber/default.nix b/pkgs/tools/typesetting/rubber/default.nix
index 7c58c480a7917..101f43e86ce63 100644
--- a/pkgs/tools/typesetting/rubber/default.nix
+++ b/pkgs/tools/typesetting/rubber/default.nix
@@ -1,22 +1,21 @@
 { fetchurl, stdenv, python, texinfo }:
 
 stdenv.mkDerivation rec {
-  name = "rubber-1.1";
+  name = "rubber-1.3";
 
   src = fetchurl {
-    url = "http://ebeffara.free.fr/pub/${name}.tar.gz";
-    sha256 = "1xbkv8ll889933gyi2a5hj7hhh216k04gn8fwz5lfv5iz8s34gbq";
+    url = "https://launchpad.net/rubber/trunk/1.3/+download/rubber-1.3.tar.gz";
+    sha256 = "09715apfd6a0haz1mqsxgm8sj4rwzi38gcz2kz020zxk5rh0dksh";
   };
 
   buildInputs = [ python texinfo ];
 
-  patchPhase = "substituteInPlace configure --replace which \"type -P\"";
-
-  postInstall = "rm $out/share/rubber/modules/etex.rub";
+  patchPhase = ''
+    substituteInPlace configure --replace which "type -P"
+  '';
 
   meta = {
     description = "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
@@ -26,9 +25,8 @@ stdenv.mkDerivation rec {
       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/;
+    maintainers = [ stdenv.lib.maintainers.ttuegel ];
   };
 }