diff options
author | Wiktor Żelazny <wzelazny@vurv.cz> | 2022-07-05 13:08:49 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2022-07-08 23:58:11 +0200 |
commit | 0d011e54c684507aac675bb38f37747cc6731d9e (patch) | |
tree | 585ef8619c9ed87bf6161f15402cddacb700081a /gnu | |
parent | e80f0cda96181d90604c44f69094f2499036b3f6 (diff) | |
download | guix-0d011e54c684507aac675bb38f37747cc6731d9e.tar.gz guix-0d011e54c684507aac675bb38f37747cc6731d9e.zip |
gnu: Add texlive-babel-finnish.
* gnu/packages/tex.scm (texlive-babel-finnish): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/tex.scm | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index f6b4c25595..08e506bf1c 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -10981,3 +10981,30 @@ possible through the LaTeX @code{\\ref} and @code{\\pageref} cross reference mechanism. Line numbering may be extended to footnote lines, using the fnlineno package.") (license license:lppl1.3a+))) + +(define-public texlive-babel-finnish + (let ((template (simple-texlive-package + "texlive-babel-finnish" + (list "/source/generic/babel-finnish/") + (base32 + "1930zxk4l6k5q4wcbvpvijv4s0gxp2mkxvblczn4gcbar10vfd4x")))) + (package + (inherit template) + (arguments + (substitute-keyword-arguments (package-arguments template) + ((#:tex-directory _ '()) + "generic/babel-finnish") + ((#:build-targets _ '()) + ''("finnish.ins")) ; TODO: use dtx and build documentation + ((#:phases phases) + `(modify-phases ,phases + (add-after 'unpack 'chdir + (lambda _ + (chdir "source/generic/babel-finnish"))))))) + (home-page "https://www.ctan.org/pkg/babel-finnish") + (synopsis "Babel support for Finnish") + (description + "This package provides the language definition file for support of +Finnish in @code{babel}. It provides all the necessary macros, definitions and +settings to typeset Finnish documents.") + (license license:lppl1.3c+)))) |