mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 14:28:15 -05:00
gnu: Add atomics.
* gnu/packages/lisp-xyz.scm (cl-atomics, ecl-atomics, sbcl-atomics): New variables.
This commit is contained in:
parent
9d48a179d1
commit
9903342ac8
1 changed files with 35 additions and 0 deletions
|
@ -17514,3 +17514,38 @@ (define-public ecl-binding-arrows
|
|||
|
||||
(define-public cl-binding-arrows
|
||||
(sbcl-package->cl-source-package sbcl-binding-arrows))
|
||||
|
||||
(define-public sbcl-atomics
|
||||
;; No release in years.
|
||||
(let ((commit "9ee0bdebcd2bb9b242671a75460db13fbf45454c")
|
||||
(revision "1"))
|
||||
(package
|
||||
(name "sbcl-atomics")
|
||||
(version (git-version "1.0.0" revision commit))
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/Shinmera/atomics")
|
||||
(commit commit)))
|
||||
(file-name (git-file-name "atomics" version))
|
||||
(sha256
|
||||
(base32 "0mp5jdqq0aamdhgnvw149cqqi3zg7dkkibp25qi4rafw1fnpd40z"))))
|
||||
(build-system asdf-build-system/sbcl)
|
||||
(inputs
|
||||
`(("documentation-utils" ,sbcl-documentation-utils)))
|
||||
(native-inputs
|
||||
`(("parachute" ,sbcl-parachute)))
|
||||
(home-page "https://shinmera.github.io/atomics/")
|
||||
(synopsis "Common Lisp portability layer for atomic operations")
|
||||
(description
|
||||
"This is a library for access to atomic operation primitives such as
|
||||
compare-and-swap. It aims to be a rather thin layer over what the
|
||||
implementations offer.")
|
||||
(license license:zlib))))
|
||||
|
||||
(define-public ecl-atomics
|
||||
(sbcl-package->ecl-package sbcl-atomics))
|
||||
|
||||
(define-public cl-atomics
|
||||
(sbcl-package->cl-source-package sbcl-atomics))
|
||||
|
|
Loading…
Reference in a new issue