[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
26/53: gnu: texlive-texdoctk: Fix runtime error.
From: |
guix-commits |
Subject: |
26/53: gnu: texlive-texdoctk: Fix runtime error. |
Date: |
Mon, 13 May 2024 10:02:21 -0400 (EDT) |
ngz pushed a commit to branch tex-team
in repository guix.
commit 886c51c3913efd01dc378e4b68d8a968655ebbe0
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
AuthorDate: Sat May 11 17:56:15 2024 +0200
gnu: texlive-texdoctk: Fix runtime error.
* gnu/packages/tex.scm (texlive-texdoctk)[arguments]: Wrap Per script so
Perl
library is found at runtime.
[inputs]: Add PERL-TK.
* gnu/packages/tex.scm (texlive-bin): Do not build texdoctk.
Change-Id: Ibf867bbf5fd5f241878d7832f40536eec0d0d13c
---
gnu/packages/tex.scm | 13 +++++++++++--
1 file changed, 11 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index 06ca76016f..826fbebdbb 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -773,6 +773,7 @@ and should be preferred to it whenever a package would
otherwise depend on
"ps2eps"
"psutils"
"t1utils"
+ "texdoctk"
"upmendex"
"xindy"
"xpdfopen"))))
@@ -43505,8 +43506,16 @@ other configuration can be extensively customized.")
"18xxivpgjdh8v6kg0b45zjv18sm9a4ljpwk6a4cghg5l5yggrjcx")))
(outputs '("out" "doc"))
(build-system texlive-build-system)
- (arguments (list #:link-scripts #~(list "texdoctk.pl")))
- (inputs (list perl))
+ (arguments
+ (list
+ #:link-scripts #~(list "texdoctk.pl")
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-after 'link-scripts 'wrap-perl-script
+ (lambda _
+ (wrap-program (string-append #$output "/bin/texdoctk")
+ `("PERL5LIB" ":" prefix (,(getenv "PERL5LIB")))))))))
+ (inputs (list perl perl-tk))
(propagated-inputs (list texlive-kpathsea))
(home-page "https://ctan.org/pkg/texdoctk")
(synopsis "Easy access to package documentation")
- 19/53: gnu: Add texlive-libptexenc., (continued)
- 19/53: gnu: Add texlive-libptexenc., guix-commits, 2024/05/13
- 22/53: gnu: texlive-velthuis: Build executable., guix-commits, 2024/05/13
- 30/53: gnu: texlive-pmx: Build executables., guix-commits, 2024/05/13
- 32/53: gnu: texlive-bin: Ignore "utils" directory., guix-commits, 2024/05/13
- 35/53: gnu: texlive-tex4ht: Build executables., guix-commits, 2024/05/13
- 37/53: gnu: texlive-ps2pk: Build executables., guix-commits, 2024/05/13
- 39/53: gnu: texlive-makeindex: Build executables., guix-commits, 2024/05/13
- 43/53: gnu: texlive-dvipos: Build executables., guix-commits, 2024/05/13
- 51/53: gnu: texlive-bibtex8: Build executable., guix-commits, 2024/05/13
- 48/53: gnu: texlive-dtl: Build executables., guix-commits, 2024/05/13
- 26/53: gnu: texlive-texdoctk: Fix runtime error.,
guix-commits <=
- 25/53: gnu: texlive-libkpathsea: Tiny refactoring., guix-commits, 2024/05/13
- 34/53: gnu: texlive-ttfutils: Build executables., guix-commits, 2024/05/13
- 36/53: gnu: texlive-seetexk: Build executables., guix-commits, 2024/05/13
- 44/53: gnu: texlive-dvipdfmx: Build executables., guix-commits, 2024/05/13
- 45/53: gnu: texlive-dviout-util: Build executables., guix-commits, 2024/05/13
- 53/53: gnu: Update commentary in "tex.scm"., guix-commits, 2024/05/13