guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

05/07: gnu: Add texlive-babel-swedish.


From: guix-commits
Subject: 05/07: gnu: Add texlive-babel-swedish.
Date: Mon, 3 May 2021 09:38:14 -0400 (EDT)

rekado pushed a commit to branch master
in repository guix.

commit 3d8a48f8935b479af16bec57c56b0043efd90525
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Mon May 3 13:57:24 2021 +0200

    gnu: Add texlive-babel-swedish.
    
    * gnu/packages/tex.scm (texlive-babel-swedish): New variable.
    
    Co-authored-by: Rovanion Luckey <rovanion.luckey@gmail.com>
---
 gnu/packages/tex.scm | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index 54b503e..df5d1fa 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -3380,6 +3380,31 @@ traditional and reformed German orthography as well as 
for the Austrian and
 Swiss varieties of German.")
     (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
   (package
     (name "texlive-latex-cyrillic")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]