mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-21 18:19:15 -05:00
gnu: Add cl-trivial-main-thread.
* gnu/packages/lisp-xyz.scm (sbcl-trivial-main-thread, ecl-trivial-main-thread, cl-trivial-main-thread): New variables. Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
This commit is contained in:
parent
4a1fd4a537
commit
a232a40b00
1 changed files with 34 additions and 0 deletions
|
@ -16543,3 +16543,37 @@ (define-public ecl-simple-tasks
|
||||||
|
|
||||||
(define-public cl-simple-tasks
|
(define-public cl-simple-tasks
|
||||||
(sbcl-package->cl-source-package sbcl-simple-tasks))
|
(sbcl-package->cl-source-package sbcl-simple-tasks))
|
||||||
|
|
||||||
|
(define-public sbcl-trivial-main-thread
|
||||||
|
(let ((commit "25f114973bb69eb63e01d0bbfead31f8e682846a")
|
||||||
|
(revision "1"))
|
||||||
|
(package
|
||||||
|
(name "sbcl-trivial-main-thread")
|
||||||
|
(version (git-version "1.0.0" revision commit))
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/Shinmera/trivial-main-thread")
|
||||||
|
(commit commit)))
|
||||||
|
(file-name (git-file-name "trivial-main-thread" version))
|
||||||
|
(sha256
|
||||||
|
(base32 "0bw1887i7396lqg75qvmgjfzz4xbiq9w5dp8wxdgrcsm0qwlraw7"))))
|
||||||
|
(build-system asdf-build-system/sbcl)
|
||||||
|
(inputs
|
||||||
|
`(("bordeaux-threads" ,sbcl-bordeaux-threads)
|
||||||
|
("simple-tasks" ,sbcl-simple-tasks)
|
||||||
|
("trivial-features" ,sbcl-trivial-features)))
|
||||||
|
(home-page "https://shinmera.github.io/trivial-main-thread/")
|
||||||
|
(synopsis "Compatibility library to run things in the main thread")
|
||||||
|
(description
|
||||||
|
"This package provides a Common Lisp system which wraps the
|
||||||
|
BORDEAUX-THREADS system to be able to run things in the main thread of the
|
||||||
|
implementation, for example drawing calls of GUI applications.")
|
||||||
|
(license license:zlib))))
|
||||||
|
|
||||||
|
(define-public ecl-trivial-main-thread
|
||||||
|
(sbcl-package->ecl-package sbcl-trivial-main-thread))
|
||||||
|
|
||||||
|
(define-public cl-trivial-main-thread
|
||||||
|
(sbcl-package->cl-source-package sbcl-trivial-main-thread))
|
||||||
|
|
Loading…
Reference in a new issue