diff options
author | Tom Fitzhenry <tom@tom-fitzhenry.me.uk> | 2022-06-24 21:08:38 +1000 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2022-08-08 17:26:19 +0200 |
commit | 3668a452d184d8f373d697bd44ad2eee21b60b38 (patch) | |
tree | 3e3eb13978b631247537cbf8c2570265c918f25b /gnu/packages | |
parent | 8f25dd57d6f9cd6878955f8260af64b521cc8344 (diff) | |
download | guix-3668a452d184d8f373d697bd44ad2eee21b60b38.tar.gz |
gnu: texlive-hyphen-package: Remove input labels.
* gnu/packages/tex.scm (texlive-hyphen-package): Remove input labels. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/tex.scm | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index d075a6e475..f32b836324 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -187,7 +187,8 @@ files from LOCATIONS with expected checksum HASH. CODE is not currently in use. (string-append root "/tex/generic/hyph-utf8/patterns/quote"))) (mkdir "scripts") (copy-recursively - (assoc-ref inputs "hyph-utf8-scripts") "scripts") + (dirname (search-input-file inputs "hyph-utf8.rb")) + "scripts") ;; Prepare target directories (mkdir-p patterns) @@ -225,9 +226,7 @@ files from LOCATIONS with expected checksum HASH. CODE is not currently in use. (string-append "File.join(\"" ptex "\""))) (invoke "ruby" "generate-ptex-patterns.rb"))))))))) (native-inputs - `(("ruby" ,ruby) - ("ruby-hydra-minimal" ,ruby-hydra-minimal) - ("hyph-utf8-scripts" ,hyph-utf8-scripts))) + (list ruby ruby-hydra-minimal hyph-utf8-scripts)) (home-page "https://ctan.org/pkg/hyph-utf8")))) (define texlive-extra-src |