gnu: cl-bordeaux-threads: Update to commit 354abb0a.

This commit includes a fix which makes the package compatible asdf 3.3.1.

* gnu/packages/lisp.scm (sbcl-bordeaux-threads): Update to commit 354abb0a.

Signed-off-by: Marius Bakke <mbakke@fastmail.com>
This commit is contained in:
Andy Patterson 2018-02-18 22:20:06 -05:00 committed by Marius Bakke
parent 04ab38b7ee
commit 543cf6fd37
No known key found for this signature in database
GPG Key ID: A2A06DF2A33A54FA
1 changed files with 21 additions and 19 deletions

View File

@ -726,18 +726,20 @@ 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 "354abb0ae9f1d9324001e1a8abab3128d7420e0e")
(revision "1"))
(package (package
(name "sbcl-bordeaux-threads") (name "sbcl-bordeaux-threads")
(version "0.8.5") (version (git-version "0.8.5" revision commit))
(source (origin (source (origin
(method url-fetch) (method git-fetch)
(uri (string-append (uri (git-reference
"https://github.com/sionescu/bordeaux-threads/archive/v" (url "https://github.com/sionescu/bordeaux-threads.git")
version ".tar.gz")) (commit commit)))
(sha256 (sha256
(base32 "10ryrcx832fwqdawb6jmknymi7wpdzhi30qzx7cbrk0cpnka71w2")) (base32 "1hcfp21l6av1xj6z7r77sp6h4mwf9vvx4s745803sysq2qy2mwnq"))
(file-name (file-name
(string-append "bordeaux-threads-" version ".tar.gz")))) (git-file-name "bordeaux-threads" version))))
(inputs `(("alexandria" ,sbcl-alexandria))) (inputs `(("alexandria" ,sbcl-alexandria)))
(native-inputs `(("fiveam" ,sbcl-fiveam))) (native-inputs `(("fiveam" ,sbcl-fiveam)))
(build-system asdf-build-system/sbcl) (build-system asdf-build-system/sbcl)
@ -746,7 +748,7 @@ interactive development model in mind.")
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))