aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/tools/typesetting/rubber/default.nix
diff options
context:
space:
mode:
authorMx Kookie <kookie@spacekookie.de>2020-10-31 19:35:09 +0100
committerMx Kookie <kookie@spacekookie.de>2020-10-31 19:35:09 +0100
commitc4625b175f8200f643fd6e11010932ea44c78433 (patch)
treebce3f89888c8ac3991fa5569a878a9eab6801ccc /infra/libkookie/nixpkgs/pkgs/tools/typesetting/rubber/default.nix
parent49f735974dd103039ddc4cb576bb76555164a9e7 (diff)
parentd661aa56a8843e991261510c1bb28fdc2f6975ae (diff)
Add 'infra/libkookie/' from commit 'd661aa56a8843e991261510c1bb28fdc2f6975ae'
git-subtree-dir: infra/libkookie git-subtree-mainline: 49f735974dd103039ddc4cb576bb76555164a9e7 git-subtree-split: d661aa56a8843e991261510c1bb28fdc2f6975ae
Diffstat (limited to 'infra/libkookie/nixpkgs/pkgs/tools/typesetting/rubber/default.nix')
-rw-r--r--infra/libkookie/nixpkgs/pkgs/tools/typesetting/rubber/default.nix43
1 files changed, 43 insertions, 0 deletions
diff --git a/infra/libkookie/nixpkgs/pkgs/tools/typesetting/rubber/default.nix b/infra/libkookie/nixpkgs/pkgs/tools/typesetting/rubber/default.nix
new file mode 100644
index 000000000000..a9ac2690b66d
--- /dev/null
+++ b/infra/libkookie/nixpkgs/pkgs/tools/typesetting/rubber/default.nix
@@ -0,0 +1,43 @@
+{ 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;
+ };
+}