mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-27 23:02:16 -05:00
gnu: texlive-stringenc: Fix build.
* gnu/packages/tex.scm (texlive-stringenc): Remove `simple-texlive-package' call. [source]: Add missing locations.
This commit is contained in:
parent
97188ba798
commit
6539f4e8cd
1 changed files with 17 additions and 20 deletions
|
@ -4087,27 +4087,24 @@ (define-public texlive-grffile
|
||||||
(license license:lppl1.3c+)))
|
(license license:lppl1.3c+)))
|
||||||
|
|
||||||
(define-public texlive-stringenc
|
(define-public texlive-stringenc
|
||||||
(let ((template (simple-texlive-package
|
(package
|
||||||
"texlive-stringenc"
|
(name "texlive-stringenc")
|
||||||
(list "/doc/latex/stringenc/README.md"
|
(version (number->string %texlive-revision))
|
||||||
"/source/latex/stringenc/stringenc.dtx")
|
(source (texlive-origin
|
||||||
(base32
|
name version
|
||||||
"19sfi5jxldxmy79pxmapmgmn3iknf8wjczasvlrrwv0gyycxdzhw"))))
|
(list "doc/latex/stringenc/"
|
||||||
(package
|
"source/latex/stringenc/"
|
||||||
(inherit template)
|
"tex/generic/stringenc/")
|
||||||
(outputs '("doc" "out"))
|
(base32
|
||||||
(arguments
|
"1pz9fgn3zc1brbpkw2kkphsv8q6vpvbn51n0smmfl1n2m97fni9j")))
|
||||||
(substitute-keyword-arguments (package-arguments template)
|
(outputs '("out" "doc"))
|
||||||
((#:tex-directory _ #t)
|
(build-system texlive-build-system)
|
||||||
"generic/stringenc")
|
(home-page "https://ctan.org/pkg/stringenc")
|
||||||
((#:build-targets _ #t)
|
(synopsis "Converting a string between different encodings")
|
||||||
'(list "stringenc.dtx"))))
|
(description
|
||||||
(home-page "https://www.ctan.org/pkg/stringenc")
|
"This package provides @code{\\StringEncodingConvert} for converting a
|
||||||
(synopsis "Converting a string between different encodings")
|
|
||||||
(description
|
|
||||||
"This package provides @code{\\StringEncodingConvert} for converting a
|
|
||||||
string between different encodings. Both LaTeX and plain-TeX are supported.")
|
string between different encodings. Both LaTeX and plain-TeX are supported.")
|
||||||
(license license:lppl1.3c+))))
|
(license license:lppl1.3c+)))
|
||||||
|
|
||||||
(define-public texlive-l3build
|
(define-public texlive-l3build
|
||||||
(let ((template (simple-texlive-package
|
(let ((template (simple-texlive-package
|
||||||
|
|
Loading…
Reference in a new issue