diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-04 18:10:02 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-11 14:39:32 +0200 |
commit | 6c1805a7c1a85e1b1a94b7287235687323de32f4 (patch) | |
tree | 4c34289f1bbcc53672b3c7ec71ec4467f079adaa /gnu/packages | |
parent | c1b95246828aab0059b3f6a803c3d16ca7a1df19 (diff) |
gnu: Add texlive-lshort-slovenian.
* gnu/packages/tex.scm (texlive-lshort-slovenian): New variable.
Diffstat (limited to 'gnu/packages')
-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 f3c4ffcaa0..ffb40ef889 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -5031,6 +5031,24 @@ LaTeX2e}, with added coverage of Finnish typesetting rules.") Short Introduction to LaTeX2e}.") (license license:lppl))) +(define-public texlive-lshort-slovenian + (package + (name "texlive-lshort-slovenian") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/lshort-slovenian/") + (base32 + "0cwjg0z5vr4x93bz1khwl27rk8k7kpjm978iyzn6w7gx3wi87zr0"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/lshort-slovenian") + (synopsis "Slovenian introduction to LaTeX") + (description + "This package provides a Slovenian translation of the @emph{(Not So) +Short Introduction to LaTeX2e}.") + (license license:gpl3+))) + (define-public texlive-lstbayes (package (name "texlive-lstbayes") |