mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: Add texlive-babel-swedish.
* gnu/packages/tex.scm (texlive-babel-swedish): New variable. Co-authored-by: Rovanion Luckey <rovanion.luckey@gmail.com>
This commit is contained in:
parent
04cbef14ff
commit
3d8a48f893
1 changed files with 25 additions and 0 deletions
|
@ -3380,6 +3380,31 @@ (define-public texlive-generic-babel-german
|
||||||
Swiss varieties of German.")
|
Swiss varieties of German.")
|
||||||
(license license:lppl1.3+)))
|
(license license:lppl1.3+)))
|
||||||
|
|
||||||
|
(define-public texlive-babel-swedish
|
||||||
|
(let ((template (simple-texlive-package
|
||||||
|
"texlive-babel-swedish"
|
||||||
|
(list "/source/generic/babel-swedish/")
|
||||||
|
(base32
|
||||||
|
"0swdg2l5i7cbcvy4q4xgsnwwnbxiyvs6f5b72kiw7mjn24v27g8f"))))
|
||||||
|
(package
|
||||||
|
(inherit template)
|
||||||
|
(arguments
|
||||||
|
(substitute-keyword-arguments (package-arguments template)
|
||||||
|
((#:tex-directory _ '())
|
||||||
|
"generic/babel-swedish")
|
||||||
|
((#:build-targets _ '())
|
||||||
|
''("swedish.ins")) ; TODO: use dtx and build documentation
|
||||||
|
((#:phases phases)
|
||||||
|
`(modify-phases ,phases
|
||||||
|
(add-after 'unpack 'chdir
|
||||||
|
(lambda _ (chdir "source/generic/babel-swedish")))))))
|
||||||
|
(home-page "https://www.ctan.org/pkg/babel-swedish")
|
||||||
|
(synopsis "Babel support for Swedish")
|
||||||
|
(description "This package provides the language definition file for
|
||||||
|
support of Swedish in @code{babel}. It provides all the necessary macros,
|
||||||
|
definitions and settings to typeset Swedish documents.")
|
||||||
|
(license license:lppl1.3c+))))
|
||||||
|
|
||||||
(define-public texlive-latex-cyrillic
|
(define-public texlive-latex-cyrillic
|
||||||
(package
|
(package
|
||||||
(name "texlive-latex-cyrillic")
|
(name "texlive-latex-cyrillic")
|
||||||
|
|
Loading…
Reference in a new issue