diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-22 16:20:00 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-24 11:10:52 +0200 |
commit | 0238fced2289a7c9f6300a0a583059485f55c2a3 (patch) | |
tree | 4b6bfa885fe4e55ba11853ad83c272f166932d1d /gnu | |
parent | bcc1a9a7ac6f386a76a158728b3cf1158040c8ef (diff) |
gnu: Add texlive-ndsu-thesis.
* gnu/packages/tex.scm (texlive-ndsu-thesis): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/tex.scm | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 639877124c..e4dbc64b2e 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -23135,6 +23135,25 @@ University in order to make it easy to write experiment reports and homework for the bachelor's curriculum.") (license license:lppl1.3c))) +(define-public texlive-ndsu-thesis + (package + (name "texlive-ndsu-thesis") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/ndsu-thesis/" + "tex/latex/ndsu-thesis/") + (base32 + "0nwn17993jqiwgjjfi2jqj6m1qq8b1cbgxvq7shqvk48a0zh6y6h"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/ndsu-thesis") + (synopsis "North Dakota State University disquisition class") + (description + "This package provides a class for generating disquisitions, intended to +be in compliance with North Dakota State University requirements.") + (license license:lppl1.3+))) + (define-public texlive-nucleardata (package (name "texlive-nucleardata") |