guix-commits
[Top][All Lists]
Advanced

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

25/35: gnu: Add texlive-latex-l3packages.


From: Ricardo Wurmus
Subject: 25/35: gnu: Add texlive-latex-l3packages.
Date: Thu, 15 Jun 2017 11:04:09 -0400 (EDT)

rekado pushed a commit to branch master
in repository guix.

commit cc09d48bab1982fad4659b9ec1d8fb20250f3bee
Author: Ricardo Wurmus <address@hidden>
Date:   Fri Jun 9 12:27:22 2017 +0200

    gnu: Add texlive-latex-l3packages.
    
    * gnu/packages/tex.scm (texlive-latex-l3packages): New variable.
---
 gnu/packages/tex.scm | 47 +++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 47 insertions(+)

diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index 44f76aa..06cb4f4 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -1114,6 +1114,53 @@ code are built: it is an API for TeX programmers.  The 
packages are set up so
 that the LaTeX3 conventions can be used with regular LaTeX 2e packages.")
     (license license:lppl1.3c+)))
 
+(define-public texlive-latex-l3packages
+  (package
+    (name "texlive-latex-l3packages")
+    (version (number->string %texlive-revision))
+    (source (origin
+              (method svn-fetch)
+              (uri (texlive-ref "latex" "l3packages"))
+              (sha256
+               (base32
+                "1p1y9my6ccmp2ab91fzqqgih8ifrk4y3wyh397kagiq9f6a6v91f"))))
+    (build-system texlive-build-system)
+    (arguments
+     '(#:tex-directory "latex/l3packages"
+       #:phases
+       (modify-phases %standard-phases
+         ;; All package sources are in sub-directories, so we need to add them
+         ;; to TEXINPUTS.
+         (add-after 'unpack 'set-TEXINPUTS
+           (lambda _
+             (let ((cwd (getcwd)))
+               (setenv "TEXINPUTS"
+                       (string-append cwd "/l3keys2e:"
+                                      cwd "/xparse:"
+                                      cwd "/xfrac:"
+                                      cwd "/xfp:"
+                                      cwd "/xtemplate")))
+             #t)))))
+    (inputs
+     `(("texlive-latex-l3kernel" ,texlive-latex-l3kernel)))
+    (home-page "http://www.ctan.org/pkg/l3packages";)
+    (synopsis "High-level LaTeX3 concepts")
+    (description
+     "This bundle holds prototype implementations of concepts for a LaTeX
+designer interface, to be used with the experimental LaTeX kernel as
+programming tools and kernel supĀ­port.  Packages provided in this release are:
+
address@hidden
address@hidden l3keys2e, which makes the facilities of the kernel module l3keys
+  available for use by LaTeX 2e packages;
address@hidden xfrac, which provides flexible splitlevel fractions;
address@hidden xparse, which provides a high-level interface for declaring 
document
+  commands; and
address@hidden xtemplate, which provides a means of defining generic functions 
using a
+  key-value syntax.
address@hidden enumerate\n")
+    (license license:lppl1.3c+)))
+
 (define texlive-texmf
   (package
    (name "texlive-texmf")



reply via email to

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