[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
bug#27296: [PATCH 05/35] gnu: Add texlive-generic-dehyph-exptl.
From: |
Ricardo Wurmus |
Subject: |
bug#27296: [PATCH 05/35] gnu: Add texlive-generic-dehyph-exptl. |
Date: |
Fri, 9 Jun 2017 12:45:29 +0200 |
* gnu/packages/tex.scm (texlive-generic-dehyph-exptl): New variable.
---
gnu/packages/tex.scm | 35 +++++++++++++++++++++++++++++++++++
1 file changed, 35 insertions(+)
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index 9e05eee51..7e4d29be5 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -256,6 +256,41 @@ set up and one for initializing XeTeX character classes as
has been carried
out to date by @code{unicode-letters.tex}. ")
(license license:lppl1.3c+)))
+(define-public texlive-generic-dehyph-exptl
+ (package
+ (name "texlive-generic-dehyph-exptl")
+ (version (number->string %texlive-revision))
+ (source (origin
+ (method svn-fetch)
+ (uri (svn-reference
+ (url (string-append "svn://www.tug.org/texlive/tags/"
+ %texlive-tag "/Master/texmf-dist/"
+ "/tex/generic/dehyph-exptl"))
+ (revision %texlive-revision)))
+ (sha256
+ (base32
+ "1l9wgv99qq0ysvlxqpj4g8bl0dywbzra4g8m2kmpg2fb0i0hczap"))))
+ (build-system trivial-build-system)
+ (arguments
+ `(#:modules ((guix build utils))
+ #:builder
+ (begin
+ (use-modules (guix build utils))
+ (let ((target (string-append (assoc-ref %outputs "out")
+
"/share/texmf-dist/tex/generic/dehyph-exptl")))
+ (mkdir-p target)
+ (copy-recursively (assoc-ref %build-inputs "source") target)
+ #t))))
+ (home-page "http://projekte.dante.de/Trennmuster/WebHome")
+ (synopsis "Hyphenation patterns for German")
+ (description "The package provides experimental hyphenation patterns for
+the German language, covering both traditional and reformed orthography. The
+patterns can be used with packages Babel and hyphsubst from the Oberdiek
+bundle.")
+ ;; Hyphenation patterns are under the Expat license; documentation is
+ ;; under LPPL.
+ (license (list license:expat license:lppl))))
+
(define texlive-texmf
(package
(name "texlive-texmf")
--
2.12.2
- bug#27296: Modular Texlive, Ricardo Wurmus, 2017/06/09
- bug#27296: [PATCH 01/35] guix: Add download-svn-to-store., Ricardo Wurmus, 2017/06/09
- bug#27296: [PATCH 03/35] gnu: Add texlive-dvips., Ricardo Wurmus, 2017/06/09
- bug#27296: [PATCH 04/35] gnu: Add texlive-generic-unicode-data., Ricardo Wurmus, 2017/06/09
- bug#27296: [PATCH 05/35] gnu: Add texlive-generic-dehyph-exptl.,
Ricardo Wurmus <=
- bug#27296: [PATCH 06/35] gnu: Add texlive-generic-tex-ini-files., Ricardo Wurmus, 2017/06/09
- bug#27296: [PATCH 08/35] gnu: Add texlive-metafont-base., Ricardo Wurmus, 2017/06/09
- bug#27296: [PATCH 09/35] gnu: Add texlive-fonts-cm., Ricardo Wurmus, 2017/06/09
- bug#27296: [PATCH 07/35] gnu: Add texlive-generic-hyph-utf8., Ricardo Wurmus, 2017/06/09
- bug#27296: [PATCH 11/35] gnu: Add texlive-fonts-latex., Ricardo Wurmus, 2017/06/09
- bug#27296: [PATCH 02/35] guix: Add common TeX and LaTeX licenses., Ricardo Wurmus, 2017/06/09