gnu: texlive-tex-plain: Simplify.
* gnu/packages/tex.scm (texlive-tex-plain): Implement with SIMPLE-TEXLIVE-PACKAGE. [description]: Use full sentences.
This commit is contained in:
parent
8bc9afeb9e
commit
8fee5067b2
|
@ -1270,36 +1270,18 @@ incorporates the e-TeX extensions.")
|
||||||
|
|
||||||
(define-public texlive-tex-plain
|
(define-public texlive-tex-plain
|
||||||
(package
|
(package
|
||||||
(name "texlive-tex-plain")
|
(inherit (simple-texlive-package
|
||||||
(version (number->string %texlive-revision))
|
"texlive-tex-plain"
|
||||||
(source (origin
|
(list "/tex/plain/")
|
||||||
(method svn-fetch)
|
(base32
|
||||||
(uri (svn-reference
|
"1rrfay4d7lbyj02wlf23mwvbpjd160nwlgryx97hq1vb7dva4swr")
|
||||||
(url (string-append "svn://www.tug.org/texlive/tags/"
|
#:trivial? #t))
|
||||||
%texlive-tag "/Master/texmf-dist/"
|
|
||||||
"/tex/plain"))
|
|
||||||
(revision %texlive-revision)))
|
|
||||||
(file-name (string-append name "-" version "-checkout"))
|
|
||||||
(sha256
|
|
||||||
(base32
|
|
||||||
"1xknlb3gcw6jjqh97bhghxi594bzpj1zfzzfsrr9pvr9s1bx7dnf"))))
|
|
||||||
(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/plain")))
|
|
||||||
(mkdir-p target)
|
|
||||||
(copy-recursively (assoc-ref %build-inputs "source") target)
|
|
||||||
#t))))
|
|
||||||
(home-page "https://www.ctan.org/pkg/plain")
|
(home-page "https://www.ctan.org/pkg/plain")
|
||||||
(synopsis "Plain TeX format and supporting files")
|
(synopsis "Plain TeX format and supporting files")
|
||||||
(description
|
(description
|
||||||
"Contains files used to build the Plain TeX format, as described in the
|
"This package contains files used to build the Plain TeX format, as
|
||||||
TeXbook, together with various supporting files (some also discussed in the
|
described in the TeXbook, together with various supporting files (some also
|
||||||
book).")
|
discussed in the book).")
|
||||||
(license license:knuth)))
|
(license license:knuth)))
|
||||||
|
|
||||||
(define-public texlive-hyphen-afrikaans
|
(define-public texlive-hyphen-afrikaans
|
||||||
|
|
Loading…
Reference in New Issue