mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: Add texlive-findhyph.
* gnu/packages/tex.scm (texlive-findhyph): New variable.
This commit is contained in:
parent
fd2a9e871c
commit
d63b8ed17d
1 changed files with 24 additions and 0 deletions
|
@ -1936,6 +1936,30 @@ (define-public texlive-dvisvgm
|
|||
support SVG fonts are enabled to render the graphics properly.")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public texlive-findhyph
|
||||
(package
|
||||
(name "texlive-findhyph")
|
||||
(version (number->string %texlive-revision))
|
||||
(source (texlive-origin
|
||||
name version
|
||||
(list "doc/man/man1/findhyph.1"
|
||||
"doc/man/man1/findhyph.man1.pdf"
|
||||
"doc/support/findhyph/" "scripts/findhyph/")
|
||||
(base32
|
||||
"1bxj0li1a9qsvwmp0kmfsal4vsgsqal1lgmp4423z9nvwrwvvlrr")))
|
||||
(outputs '("out" "doc"))
|
||||
(build-system texlive-build-system)
|
||||
(arguments (list #:link-scripts #~(list "findhyph")))
|
||||
(inputs (list perl))
|
||||
(home-page "https://ctan.org/pkg/findhyph")
|
||||
(synopsis "Find hyphenated words in a document")
|
||||
(description
|
||||
"Findhyph is a Perl script that will analyse the log file from running
|
||||
your document with @code{\\tracingparagraphs=1} set. The output contains
|
||||
enough context to enable you to find the hyphenated word that's being
|
||||
referenced.")
|
||||
(license license:gpl2)))
|
||||
|
||||
(define-public texlive-fontools
|
||||
(package
|
||||
(name "texlive-fontools")
|
||||
|
|
Loading…
Reference in a new issue