mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
distro: tcl: Make a `tclsh' symlink.
* gnu/packages/tcl.scm (tcl): Add a `tclsh' symlink.
This commit is contained in:
parent
5fc5c2f340
commit
3465eb03bd
1 changed files with 10 additions and 2 deletions
|
@ -42,9 +42,17 @@ (define-public tcl
|
|||
(chdir "unix"))
|
||||
(alist-cons-after
|
||||
'install 'install-private-headers
|
||||
(lambda _
|
||||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
;; Private headers are needed by Expect.
|
||||
(zero? (system* "make" "install-private-headers")))
|
||||
(and (zero? (system* "make"
|
||||
"install-private-headers"))
|
||||
(let ((bin (string-append (assoc-ref outputs "out")
|
||||
"/bin")))
|
||||
;; Create a tclsh -> tclsh8.6 symlink.
|
||||
;; Programs such as Ghostscript rely on it.
|
||||
(with-directory-excursion bin
|
||||
(symlink (car (find-files "." "tclsh"))
|
||||
"tclsh")))))
|
||||
%standard-phases))
|
||||
|
||||
;; XXX: There are a few test failures (related to HTTP, most
|
||||
|
|
Loading…
Reference in a new issue