[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
bug#27296: [PATCH 15/35] gnu: Add texlive-latex-filecontents.
From: |
Ricardo Wurmus |
Subject: |
bug#27296: [PATCH 15/35] gnu: Add texlive-latex-filecontents. |
Date: |
Fri, 9 Jun 2017 12:45:39 +0200 |
* gnu/packages/tex.scm (texlive-latex-filecontents): New variable.
---
gnu/packages/tex.scm | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index 5cb4ec6ab..0a4894d8b 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -824,6 +824,30 @@ with the required packages, constitutes what every LaTeX
distribution should
contain.")
(license license:lppl1.3c+))))
+(define-public texlive-latex-filecontents
+ (package
+ (name "texlive-latex-filecontents")
+ (version (number->string %texlive-revision))
+ (source (origin
+ (method svn-fetch)
+ (uri (texlive-ref "latex" "filecontents"))
+ (sha256
+ (base32
+ "0swkbxv8vg0yizadfnvrwjb4cj0pn34v9wm6v7wqq903fdav7k7q"))))
+ (build-system texlive-build-system)
+ (arguments '(#:tex-directory "latex/filecontents"))
+ (home-page "http://www.ctan.org/pkg/filecontents")
+ (synopsis "Extended filecontents and filecontents* environments")
+ (description
+ "LaTeX2e's @code{filecontents} and @code{filecontents*} environments
+enable a LaTeX source file to generate external files as it runs through
+LaTeX. However, there are two limitations of these environments: they refuse
+to overwrite existing files, and they can only be used in the preamble of a
+document. The filecontents package removes these limitations, letting you
+overwrite existing files and letting you use @code{filecontents} /
address@hidden anywhere.")
+ (license license:lppl1.3c+)))
+
(define texlive-texmf
(package
(name "texlive-texmf")
--
2.12.2
bug#27296: [PATCH 15/35] gnu: Add texlive-latex-filecontents.,
Ricardo Wurmus <=
bug#27296: [PATCH 10/35] gnu: Add texlive-fonts-knuth-lib., Ricardo Wurmus, 2017/06/09
bug#27296: [PATCH 12/35] gnu: Add texlive-tex-plain., Ricardo Wurmus, 2017/06/09
bug#27296: [PATCH 13/35] gnu: Add texlive-latex-base., Ricardo Wurmus, 2017/06/09
bug#27296: [PATCH 16/35] gnu: Add texlive-generic-ifxetex., Ricardo Wurmus, 2017/06/09
bug#27296: [PATCH 17/35] gnu: Add texlive-latex-fancyvrb., Ricardo Wurmus, 2017/06/09
bug#27296: [PATCH 18/35] gnu: Add texlive-latex-graphics., Ricardo Wurmus, 2017/06/09
bug#27296: [PATCH 19/35] gnu: Add texlive-latex-xcolor., Ricardo Wurmus, 2017/06/09
bug#27296: [PATCH 20/35] gnu: Add texlive-latex-hyperref., Ricardo Wurmus, 2017/06/09
bug#27296: [PATCH 14/35] build-system: Add 'texlive-build-system'., Ricardo Wurmus, 2017/06/09