diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-22 15:21:42 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-24 11:10:18 +0200 |
commit | 6970e9ab56e3d1aa19761330243fde1b2e97cb34 (patch) | |
tree | 3889a20b8b125f2b700dd93f85a9887c5c114a6d /gnu/packages | |
parent | 95b4ae1f9628cd19d9fc7433cfa3ed6604bdc043 (diff) | |
download | guix-6970e9ab56e3d1aa19761330243fde1b2e97cb34.tar guix-6970e9ab56e3d1aa19761330243fde1b2e97cb34.tar.gz |
gnu: Add texlive-bangorcsthesis.
* gnu/packages/tex.scm (texlive-bangorcsthesis): New variable.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/tex.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index a727a7d159..4b0985c87c 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -4167,6 +4167,27 @@ package provides specialized and re-defined macros to simplify this task.") language and comes with some fonts of its own.") (license (list license:lppl1.3c license:silofl1.1)))) +(define-public texlive-bangorcsthesis + (package + (name "texlive-bangorcsthesis") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/bangorcsthesis/" + "source/latex/bangorcsthesis/" + "tex/latex/bangorcsthesis/") + (base32 + "138h5q8060z7frb6krrzcx49pd0ifqh1lizi465gs6x7q7cdagz8"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/bangorcsthesis") + (synopsis "Typeset a thesis at Bangor University") + (description + "The class typesets thesis or dissertation documents for all +levels (i.e., both undergraduate and graduate students may use the class). It +also provides macros designed to optimise the process of producing a thesis.") + (license license:lppl1.3+))) + (define-public texlive-bangtex (package (name "texlive-bangtex") |