gnu: sbcl-bordeaux-threads: Update to 0.8.7.
* gnu/packages/lisp-xyz.scm (sbcl-bordeaux-threads): Update to 0.8.7.master
parent
cf10627bf2
commit
5a64785019
|
@ -166,29 +166,27 @@ interactive development model in mind.")
|
||||||
(sbcl-package->ecl-package sbcl-fiveam))
|
(sbcl-package->ecl-package sbcl-fiveam))
|
||||||
|
|
||||||
(define-public sbcl-bordeaux-threads
|
(define-public sbcl-bordeaux-threads
|
||||||
(let ((commit "5dce49fbc829f4d136a734f5ef4f5d599660984f")
|
(package
|
||||||
(revision "1"))
|
(name "sbcl-bordeaux-threads")
|
||||||
(package
|
(version "0.8.7")
|
||||||
(name "sbcl-bordeaux-threads")
|
(source (origin
|
||||||
(version (git-version "0.8.6" revision commit))
|
(method git-fetch)
|
||||||
(source (origin
|
(uri (git-reference
|
||||||
(method git-fetch)
|
(url "https://github.com/sionescu/bordeaux-threads.git")
|
||||||
(uri (git-reference
|
(commit (string-append "v" version))))
|
||||||
(url "https://github.com/sionescu/bordeaux-threads.git")
|
(sha256
|
||||||
(commit commit)))
|
(base32 "1whpfmyxp2fsw6viqj45fqgsifgr534c575bfh5vaqw5m84b6alp"))
|
||||||
(sha256
|
(file-name
|
||||||
(base32 "1gkh9rz7zw57n3110ikcf4835950wr4hgp8l79id5ai6nd86x7wv"))
|
(git-file-name "bordeaux-threads" version))))
|
||||||
(file-name
|
(inputs `(("alexandria" ,sbcl-alexandria)))
|
||||||
(git-file-name "bordeaux-threads" version))))
|
(native-inputs `(("fiveam" ,sbcl-fiveam)))
|
||||||
(inputs `(("alexandria" ,sbcl-alexandria)))
|
(build-system asdf-build-system/sbcl)
|
||||||
(native-inputs `(("fiveam" ,sbcl-fiveam)))
|
(synopsis "Portable shared-state concurrency library for Common Lisp")
|
||||||
(build-system asdf-build-system/sbcl)
|
(description "BORDEAUX-THREADS is a proposed standard for a minimal
|
||||||
(synopsis "Portable shared-state concurrency library for Common Lisp")
|
|
||||||
(description "BORDEAUX-THREADS is a proposed standard for a minimal
|
|
||||||
MP/Threading interface. It is similar to the CLIM-SYS threading and lock
|
MP/Threading interface. It is similar to the CLIM-SYS threading and lock
|
||||||
support.")
|
support.")
|
||||||
(home-page "https://common-lisp.net/project/bordeaux-threads/")
|
(home-page "https://common-lisp.net/project/bordeaux-threads/")
|
||||||
(license license:x11))))
|
(license license:x11)))
|
||||||
|
|
||||||
(define-public cl-bordeaux-threads
|
(define-public cl-bordeaux-threads
|
||||||
(sbcl-package->cl-source-package sbcl-bordeaux-threads))
|
(sbcl-package->cl-source-package sbcl-bordeaux-threads))
|
||||||
|
|
Reference in New Issue