gnu: Add texlive-etoolbox.
* gnu/packages/tex.scm (texlive-etoolbox): New variable. (texlive-latex-etoolbox): Deprecate package.master
parent
fb01a2965a
commit
346354a18e
|
@ -4124,32 +4124,15 @@ hyperlink to the target of the DOI.")
|
||||||
(define-public texlive-latex-doi
|
(define-public texlive-latex-doi
|
||||||
(deprecated-package "texlive-latex-doi" texlive-doi))
|
(deprecated-package "texlive-latex-doi" texlive-doi))
|
||||||
|
|
||||||
(define-public texlive-latex-etoolbox
|
(define-public texlive-etoolbox
|
||||||
(package
|
(package
|
||||||
(name "texlive-latex-etoolbox")
|
(inherit (simple-texlive-package
|
||||||
(version (number->string %texlive-revision))
|
"texlive-etoolbox"
|
||||||
(source (origin
|
(list "/doc/latex/etoolbox/"
|
||||||
(method svn-fetch)
|
"/tex/latex/etoolbox/")
|
||||||
(uri (svn-reference
|
(base32
|
||||||
(url (string-append "svn://www.tug.org/texlive/tags/"
|
"1qg4x5r4ibinl6zy5lq70lv4zcrjsn54n6hwv31k5kl7mwv0mvr3")
|
||||||
%texlive-tag "/Master/texmf-dist/"
|
#:trivial? #t))
|
||||||
"/tex/latex/etoolbox"))
|
|
||||||
(revision %texlive-revision)))
|
|
||||||
(file-name (string-append name "-" version "-checkout"))
|
|
||||||
(sha256
|
|
||||||
(base32
|
|
||||||
"1agmq6bf8wzcd77n20ng8bl4kh69cg5f6sjniii7bcw4llhd3nc8"))))
|
|
||||||
(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/latex/etoolbox")))
|
|
||||||
(mkdir-p target)
|
|
||||||
(copy-recursively (assoc-ref %build-inputs "source") target)
|
|
||||||
#t))))
|
|
||||||
(home-page "https://www.ctan.org/pkg/etoolbox")
|
(home-page "https://www.ctan.org/pkg/etoolbox")
|
||||||
(synopsis "e-TeX tools for LaTeX")
|
(synopsis "e-TeX tools for LaTeX")
|
||||||
(description
|
(description
|
||||||
|
@ -4162,6 +4145,9 @@ some LaTeX kernel commands; nevertheless, the package will not modify any part
|
||||||
of the LaTeX kernel.")
|
of the LaTeX kernel.")
|
||||||
(license license:lppl1.3+)))
|
(license license:lppl1.3+)))
|
||||||
|
|
||||||
|
(define-public texlive-latex-etoolbox
|
||||||
|
(deprecated-package "texlive-latex-etoolbox" texlive-etoolbox))
|
||||||
|
|
||||||
(define-public texlive-latex-fncychap
|
(define-public texlive-latex-fncychap
|
||||||
(package
|
(package
|
||||||
(name "texlive-latex-fncychap")
|
(name "texlive-latex-fncychap")
|
||||||
|
|
Reference in New Issue