nixpkgs/pkgs/tools/typesetting/rubber/default.nix
2020-04-10 17:54:53 +01:00

44 lines
1.5 KiB
Nix

{ fetchurl, stdenv, python3Packages, texinfo }:
python3Packages.buildPythonApplication rec {
pname = "rubber";
version = "1.5.1";
src = fetchurl {
url = "https://launchpad.net/rubber/trunk/${version}/+download/${pname}-${version}.tar.gz";
sha256 = "178dmrp0mza5gqjiqgk6dqs0c10s0c517pk6k9pjbam86vf47a1p";
};
nativeBuildInputs = [ texinfo ];
# I couldn't figure out how to pass the proper parameter to disable pdf generation, so we
# use sed to change the default
preBuild = ''
sed -i -r 's/pdf\s+= True/pdf = False/g' setup.py
'';
# the check scripts forces python2. If we need to use python3 at some point, we should use
# the correct python
checkPhase = ''
sed -i 's|python=python3|python=${python3Packages.python.interpreter}|' tests/run.sh
cd tests && ${stdenv.shell} run.sh
'';
meta = with stdenv.lib; {
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
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 = licenses.gpl2Plus;
homepage = "https://launchpad.net/rubber";
maintainers = with maintainers; [ ttuegel peterhoeg ];
platforms = platforms.unix;
};
}