mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: Add texlive-babel-czech.
* gnu/packages/tex.scm (texlive-babel-czech): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
f63adbf6f9
commit
48c938fbc7
1 changed files with 27 additions and 0 deletions
|
@ -11196,6 +11196,33 @@ (define-public texlive-lineno
|
|||
fnlineno package.")
|
||||
(license license:lppl1.3a+)))
|
||||
|
||||
(define-public texlive-babel-czech
|
||||
(let ((template (simple-texlive-package
|
||||
"texlive-babel-czech"
|
||||
(list "/source/generic/babel-czech/")
|
||||
(base32
|
||||
"1274pzgdya7gkvxjmdm3v5rb7hc0sj6mqn9pd8y9418yx5449spg"))))
|
||||
(package
|
||||
(inherit template)
|
||||
(arguments
|
||||
(substitute-keyword-arguments (package-arguments template)
|
||||
((#:tex-directory _ '())
|
||||
"generic/babel-czech")
|
||||
((#:build-targets _ '())
|
||||
''("czech.ins")) ; TODO: use dtx and build documentation
|
||||
((#:phases phases)
|
||||
`(modify-phases ,phases
|
||||
(add-after 'unpack 'chdir
|
||||
(lambda _
|
||||
(chdir "source/generic/babel-czech")))))))
|
||||
(home-page "https://www.ctan.org/pkg/babel-czech")
|
||||
(synopsis "Babel support for Czech")
|
||||
(description
|
||||
"This package provides the language definition file for support of
|
||||
Czech in @code{babel}. Some shortcuts are defined, as well as translations to
|
||||
Czech of standard ``LaTeX names''.")
|
||||
(license license:lppl1.3+))))
|
||||
|
||||
(define-public texlive-babel-dutch
|
||||
(let ((template (simple-texlive-package
|
||||
"texlive-babel-dutch"
|
||||
|
|
Loading…
Reference in a new issue