mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: Add cl-ltk-remote.
* gnu/packages/lisp-xyz.scm (sbcl-ltk-remote, cl-ltk-remote): New variables.
This commit is contained in:
parent
811747f956
commit
b72629eb24
1 changed files with 18 additions and 0 deletions
|
@ -9841,3 +9841,21 @@ (define-public cl-ltk-mw
|
|||
|
||||
(define-public ecl-ltk-mw
|
||||
(sbcl-package->ecl-package sbcl-ltk-mw))
|
||||
|
||||
(define-public sbcl-ltk-remote
|
||||
(package
|
||||
(inherit sbcl-ltk)
|
||||
(name "sbcl-ltk-remote")
|
||||
(inputs
|
||||
`(("ltk" ,sbcl-ltk)))
|
||||
(arguments
|
||||
(substitute-keyword-arguments (package-arguments sbcl-ltk)
|
||||
((#:asd-file _) "ltk/ltk-remote.asd")
|
||||
((#:phases _) '%standard-phases)))
|
||||
(synopsis "Remote GUI support for LTK")
|
||||
(description
|
||||
"This LTK extension allows the GUI to be displayed on a computer different
|
||||
from the one running the Lisp program by using a TCP connection.")))
|
||||
|
||||
(define-public cl-ltk-remote
|
||||
(sbcl-package->cl-source-package sbcl-ltk-remote))
|
||||
|
|
Loading…
Reference in a new issue