[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
27/35: gnu: Add texlive-luatex-lualibs.
From: |
Ricardo Wurmus |
Subject: |
27/35: gnu: Add texlive-luatex-lualibs. |
Date: |
Thu, 15 Jun 2017 11:04:09 -0400 (EDT) |
rekado pushed a commit to branch master
in repository guix.
commit e93f472d53f146f228478c4cd50b8b407d425029
Author: Ricardo Wurmus <address@hidden>
Date: Fri Jun 9 12:28:09 2017 +0200
gnu: Add texlive-luatex-lualibs.
* gnu/packages/tex.scm (texlive-luatex-lualibs): New variable.
---
gnu/packages/tex.scm | 39 ++++++++++++++++++++++++++++++++++++++-
1 file changed, 38 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index 59e74c9..e4b0e76 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -61,7 +61,7 @@
#:use-module (gnu packages zip)
#:autoload (gnu packages texinfo) (texinfo)
#:use-module (ice-9 ftw)
- #:use-module (srfi srfi-1))
+ #:use-module ((srfi srfi-1) #:hide (zip)))
(define texlive-extra-src
(origin
@@ -1186,6 +1186,43 @@ the NFSS in LaTeX running on XeTeX or LuaTeX engines.
The package requires
the l3kernel and xparse bundles from the LaTeX 3 development team.")
(license license:lppl1.3+)))
+;; The SVN directory contains little more than a dtx file that generates three
+;; of the many lua files that should be installed as part of this package.
+;; This is why we take the release from GitHub instead.
+(define-public texlive-luatex-lualibs
+ (package
+ (name "texlive-luatex-lualibs")
+ (version "2.5")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append "https://github.com/lualatex/lualibs/"
+ "releases/download/v"
+ version "/lualibs.zip"))
+ (sha256
+ (base32
+ "1xx9blvrmx9hyhrl345lpai9m6xxnw997261a1ahn1bm5r2j5fqy"))))
+ (build-system gnu-build-system)
+ (arguments
+ `(#:make-flags
+ (list (string-append "DESTDIR="
+ (assoc-ref %outputs "out")
+ "/share/texmf-dist"))
+ #:phases
+ (modify-phases %standard-phases
+ (delete 'configure))))
+ (native-inputs
+ `(("texlive-bin" ,texlive-bin)
+ ("unzip" ,unzip)
+ ("zip" ,zip)))
+ (home-page "https://github.com/lualatex/lualibs")
+ (synopsis "Lua modules for general programming (in the (La)TeX world)")
+ (description
+ "Lualibs is a collection of Lua modules useful for general programming.
+The bundle is based on Lua modules shipped with ConTeXt, and made available in
+this bundle for use independent of ConTeXt.")
+ ;; GPL version 2 only
+ (license license:gpl2)))
+
(define texlive-texmf
(package
(name "texlive-texmf")
- 28/35: gnu: Add texlive-latex-amsmath., (continued)
- 28/35: gnu: Add texlive-latex-amsmath., Ricardo Wurmus, 2017/06/15
- 25/35: gnu: Add texlive-latex-l3packages., Ricardo Wurmus, 2017/06/15
- 33/35: gnu: Add texlive-union., Ricardo Wurmus, 2017/06/15
- 06/35: gnu: Add texlive-generic-tex-ini-files., Ricardo Wurmus, 2017/06/15
- 23/35: gnu: Add texlive-latex-url., Ricardo Wurmus, 2017/06/15
- 17/35: gnu: Add texlive-latex-fancyvrb., Ricardo Wurmus, 2017/06/15
- 04/35: gnu: Add texlive-generic-unicode-data., Ricardo Wurmus, 2017/06/15
- 35/35: guix: Add texlive importer., Ricardo Wurmus, 2017/06/15
- 26/35: gnu: Add texlive-latex-fontspec., Ricardo Wurmus, 2017/06/15
- 29/35: gnu: Add texlive-latex-amscls., Ricardo Wurmus, 2017/06/15
- 27/35: gnu: Add texlive-luatex-lualibs.,
Ricardo Wurmus <=
- 31/35: gnu: texlive-latex-cyrillic., Ricardo Wurmus, 2017/06/15
- 34/35: gnu: Add texlive-tiny., Ricardo Wurmus, 2017/06/15
- 14/35: build-system: Add 'texlive-build-system'., Ricardo Wurmus, 2017/06/15
- 30/35: gnu: Add texlive-latex-babel., Ricardo Wurmus, 2017/06/15