From 67cee1e08ce2940bdd0b8252ba58ee6b34f4868b Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 22 Aug 2023 15:25:37 +0200 Subject: [PATCH] gnu: Add texlive-bmstu. * gnu/packages/tex.scm (texlive-bmstu): New variable. --- gnu/packages/tex.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 7f8adb225c..6b4b1bdd8e 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -6868,6 +6868,29 @@ in Adobe type 1 format). The package includes LaTeX macros to embed the fonts into the LaTeX font selection scheme.") (license license:lppl1.2+))) +(define-public texlive-bmstu + (package + (name "texlive-bmstu") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/bmstu/" "tex/latex/bmstu/") + (base32 + "0ipdwd78b5w4v85nqlbxf8gi42mdz19r5mdjj3agwlgb0z6icjra"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/bmstu") + (synopsis "LaTeX class for Bauman Moscow State Technical University") + (description + "The class defines commands and environments for creating reports and +explanatory notes in Bauman Moscow State Technical University (Russia).") + (license + (list license:lppl1.3+ + ;; File "bmstu-logo.pdf" is a logo of Bauman Moscow ;; State + ;; Technical University and complies with fair use (article 1274 of + ;; the Russian Civil Code). + (license:fsdg-compatible "file://doc/latex/bmstu/README.md"))))) + (define-public texlive-bodeplot (package (name "texlive-bodeplot")