diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-15 20:15:06 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-16 11:22:55 +0200 |
commit | 8059abf1c095e1ed002f65e76de5c9f0983fdb5b (patch) | |
tree | c50c2c3775cf48d5cf5458d270118358e4c49cbf /gnu | |
parent | f8f462922ee32fc8c62b41325c5dec9037dff7eb (diff) | |
download | guix-8059abf1c095e1ed002f65e76de5c9f0983fdb5b.tar guix-8059abf1c095e1ed002f65e76de5c9f0983fdb5b.tar.gz |
gnu: Add texlive-xtuthesis.
* gnu/packages/tex.scm (texlive-xtuthesis): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/tex.scm | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 78a25312ec..681bd75282 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -15330,6 +15330,24 @@ features allow to deal with numbers (tests, display, some high level operations, etc.)") (license license:lppl1.3+))) +(define-public texlive-xtuthesis + (package + (name "texlive-xtuthesis") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/xtuthesis/" + "tex/latex/xtuthesis/") + (base32 + "1fdk9dkikqlkjwrg8qjm2phvsyyvddshf78bjy6liyz5hqakk6r8"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/xtuthesis") + (synopsis "XTU thesis template") + (description + "The package provides a thesis template for the Xiangtan University.") + (license license:lppl1.3+))) + (define-public texlive-yannisgr (package (name "texlive-yannisgr") |