diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-04 11:56:03 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-11 14:39:04 +0200 |
commit | 7015018cdabdd4338ab97b604416e594a6088ce4 (patch) | |
tree | a202815e7e279bc42386646db70bbe1d1cfa7a74 /gnu/packages/tex.scm | |
parent | a99fa13e4f321e530f3d221136b8482bf348838d (diff) | |
download | guix-7015018cdabdd4338ab97b604416e594a6088ce4.tar.gz |
gnu: Add texlive-lshort-slovak.
* gnu/packages/tex.scm (texlive-lshort-slovak): New variable.
Diffstat (limited to 'gnu/packages/tex.scm')
-rw-r--r-- | gnu/packages/tex.scm | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 1fb4600b8f..35a9ffb36b 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -4512,12 +4512,30 @@ Proof, and Logic} by Dave Barker-Plummer, Jon Barwise, and John Etchemendy.") (outputs '("out" "doc")) (build-system texlive-build-system) (home-page "https://ctan.org/pkg/lshort-czech") - (synopsis "Czech translation of the @emph{Short Introduction to LaTeX2e}") + (synopsis "Czech translation to LaTeX") (description "This is the Czech translation of a @emph{(Not So) Short Introduction to LaTeX2e}.}") (license license:gpl3+))) +(define-public texlive-lshort-slovak + (package + (name "texlive-lshort-slovak") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/lshort-slovak/") + (base32 + "0b5gn95i32dyn8r7v2cdcz759fllp3b0zwx17adjs282n06vfymq"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/lshort-slovak") + (synopsis "Slovak introduction to LaTeX") + (description + "This package provides a Slovak translation of Oetiker's @emph{(Not So) +Short Introduction to LaTeX2e}.") + (license license:lppl))) + (define-public texlive-lstbayes (package (name "texlive-lstbayes") |