diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2025-02-10 12:02:32 +0100 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2025-05-05 13:51:40 +0200 |
commit | edaea3268a15fc1889e0ffcbceafe2c44f9c127e (patch) | |
tree | 112df170437782155b498b5ecc85bd414e091fe6 | |
parent | 1e442185a311d3bf5cecaa67f819b9c0249cac51 (diff) |
gnu: texlive-hyphen-complete: Remove input labels.
* gnu/packages/tex.scm (texlive-hyphen-complete)[native-inputs]: Remove
labels.
Change-Id: Id6a56bb228311a2172a8f469e117611725b34103
-rw-r--r-- | gnu/packages/tex.scm | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index c2d87472ae..a583239f06 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -706,15 +706,14 @@ of user-specified directories similar to how shells look up executables.") (string-append "File.join(\"" ptex "\""))) (invoke "ruby" "generate-ptex-patterns.rb")))))))) (native-inputs - ;; TODO: Remove input labels on next rebuild cycle. - `(("ruby" ,ruby-2.7) - ("ruby-hydra-minimal" ,ruby-hydra-minimal/pinned) - ;; Build phase requires "docstrip.tex" from TEXLIVE-LATEX. - ;; However, adding this package to native inputs would initiate - ;; a circular dependency. To work around this, use TEXLIVE-LATEX - ;; source, then add "docstrip.tex" to TEXINPUTS before build. - ("_" ,(package-source texlive-latex)) - ("texlive-tex" ,texlive-tex))) + (list ruby-2.7 + ruby-hydra-minimal/pinned + ;; Build phase requires "docstrip.tex" from TEXLIVE-LATEX. + ;; However, adding this package to native inputs would initiate + ;; a circular dependency. To work around this, use TEXLIVE-LATEX + ;; source, then add "docstrip.tex" to TEXINPUTS before build. + (package-source texlive-latex) + texlive-tex)) (home-page "https://ctan.org/pkg/hyph-utf8") (synopsis "Hyphenation patterns expressed in UTF-8") (description |