rubber: 1.1 -> 1.3

* version upgrade
* minor formatting change
* assign ttuegel as maintainer
This commit is contained in:
Thomas Tuegel 2015-12-09 16:24:17 -06:00
parent 0a64071932
commit aab20cdc51

View File

@ -1,22 +1,21 @@
{ fetchurl, stdenv, python, texinfo }: { fetchurl, stdenv, python, texinfo }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "rubber-1.1"; name = "rubber-1.3";
src = fetchurl { src = fetchurl {
url = "http://ebeffara.free.fr/pub/${name}.tar.gz"; url = "https://launchpad.net/rubber/trunk/1.3/+download/rubber-1.3.tar.gz";
sha256 = "1xbkv8ll889933gyi2a5hj7hhh216k04gn8fwz5lfv5iz8s34gbq"; sha256 = "09715apfd6a0haz1mqsxgm8sj4rwzi38gcz2kz020zxk5rh0dksh";
}; };
buildInputs = [ python texinfo ]; buildInputs = [ python texinfo ];
patchPhase = "substituteInPlace configure --replace which \"type -P\""; patchPhase = ''
substituteInPlace configure --replace which "type -P"
postInstall = "rm $out/share/rubber/modules/etex.rub"; '';
meta = { meta = {
description = "Wrapper for LaTeX and friends"; description = "Wrapper for LaTeX and friends";
longDescription = '' longDescription = ''
Rubber is a program whose purpose is to handle all tasks related Rubber is a program whose purpose is to handle all tasks related
to the compilation of LaTeX documents. This includes compiling 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 produce PostScript documents is also included, as well as usage
of pdfLaTeX to produce PDF documents. of pdfLaTeX to produce PDF documents.
''; '';
license = stdenv.lib.licenses.gpl2Plus; license = stdenv.lib.licenses.gpl2Plus;
homepage = http://www.pps.jussieu.fr/~beffara/soft/rubber/; homepage = http://www.pps.jussieu.fr/~beffara/soft/rubber/;
maintainers = [ stdenv.lib.maintainers.ttuegel ];
}; };
} }