me
/
guix
Archived
1
0
Fork 0

gnu: Add cl-ltk-mw.

* gnu/packages/lisp-xyz.scm (sbcl-ltk-mw, cl-ltk-mw, ecl-ltk-mw): New
  variables.
master
Guillaume Le Vaillant 2020-02-02 11:43:02 +01:00
parent d3a2df680b
commit 811747f956
No known key found for this signature in database
GPG Key ID: 6BE8208ADF21FE3F
1 changed files with 20 additions and 0 deletions

View File

@ -9821,3 +9821,23 @@ in pure Common Lisp and does not require any Tk knowledge for its usage.")
(define-public ecl-ltk
(sbcl-package->ecl-package sbcl-ltk))
(define-public sbcl-ltk-mw
(package
(inherit sbcl-ltk)
(name "sbcl-ltk-mw")
(inputs
`(("ltk" ,sbcl-ltk)))
(arguments
(substitute-keyword-arguments (package-arguments sbcl-ltk)
((#:asd-file _) "ltk/ltk-mw.asd")
((#:phases _) '%standard-phases)))
(synopsis "Extra widgets for LTK")
(description
"This is a collection of higher-level widgets built on top of LTK.")))
(define-public cl-ltk-mw
(sbcl-package->cl-source-package sbcl-ltk-mw))
(define-public ecl-ltk-mw
(sbcl-package->ecl-package sbcl-ltk-mw))