mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Add cl-trivial-monitored-thread.
* gnu/packages/lisp-xyz.scm (cl-trivial-monitored-thread, ecl-trivial-monitored-thread, sbcl-trivial-monitored-thread): New variables. Change-Id: I5da3c72e8437d368057aa7a7305e724141dfe09c
This commit is contained in:
parent
c75eb3b38a
commit
43208401d0
1 changed files with 33 additions and 0 deletions
|
@ -21321,6 +21321,39 @@ (define-public ecl-trivial-main-thread
|
|||
(define-public cl-trivial-main-thread
|
||||
(sbcl-package->cl-source-package sbcl-trivial-main-thread))
|
||||
|
||||
(define-public sbcl-trivial-monitored-thread
|
||||
(let ((commit "b0bab23f9a9bd06f0f33809635c7ba4e6a3d5a21")
|
||||
(revision "0"))
|
||||
(package
|
||||
(name "sbcl-trivial-monitored-thread")
|
||||
(version (git-version "0.3.11" revision commit))
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://gitlab.com/ediethelm/trivial-monitored-thread")
|
||||
(commit commit)))
|
||||
(file-name (git-file-name "trivial-monitored-thread" version))
|
||||
(sha256
|
||||
(base32 "1ipnp2l944hc587bifxsnmiymw468imar0v8bqvgxv8pc5sym4ib"))))
|
||||
(build-system asdf-build-system/sbcl)
|
||||
(native-inputs
|
||||
(list sbcl-fiveam))
|
||||
(inputs
|
||||
(list sbcl-iterate sbcl-log4cl sbcl-trivial-utilities))
|
||||
(home-page "https://gitlab.com/ediethelm/trivial-monitored-thread")
|
||||
(synopsis "Thread monitoring library for Common Lisp")
|
||||
(description
|
||||
"Trivial Monitored Thread offers a very simple (aka trivial) way of
|
||||
spawning threads and being informed when one any of them crash and die.")
|
||||
(license license:expat))))
|
||||
|
||||
(define-public cl-trivial-monitored-thread
|
||||
(sbcl-package->cl-source-package sbcl-trivial-monitored-thread))
|
||||
|
||||
(define-public ecl-trivial-monitored-thread
|
||||
(sbcl-package->ecl-package sbcl-trivial-monitored-thread))
|
||||
|
||||
(define-public sbcl-moira
|
||||
(let ((commit "21f1cfd5942fcaea2ed2e4f6055b2a5a39ac4c6e")
|
||||
(revision "0"))
|
||||
|
|
Loading…
Reference in a new issue