gnu: Add cl-ltk-remote.

* gnu/packages/lisp-xyz.scm (sbcl-ltk-remote, cl-ltk-remote): New variables.
This commit is contained in:
Guillaume Le Vaillant 2020-02-02 12:00:33 +01:00
parent 811747f956
commit b72629eb24
No known key found for this signature in database
GPG key ID: 6BE8208ADF21FE3F

View file

@ -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))