mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: Add spscqueue.
* gnu/packages/cpp.scm (spscqueue): New variable. Signed-off-by: Leo Famulari <leo@famulari.name>
This commit is contained in:
parent
9fe7b55ad0
commit
38582fb53c
1 changed files with 21 additions and 0 deletions
|
@ -516,6 +516,27 @@ (define-public ccls
|
|||
maintained anymore.")
|
||||
(license license:asl2.0)))
|
||||
|
||||
(define-public spscqueue
|
||||
(package
|
||||
(name "spscqueue")
|
||||
(version "1.1")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/rigtorp/SPSCQueue/")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "1428cj9x318afvnvnkhg0711iy4czqn86fi7ysgfhw91asa316rc"))))
|
||||
(build-system cmake-build-system)
|
||||
(home-page "https://github.com/rigtorp/SPSCQueue/")
|
||||
(synopsis "Single producer single consumer queue written in C++11")
|
||||
(description
|
||||
"This package provides a single producer single consumer wait-free and
|
||||
lock-free fixed size queue written in C++11.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public gperftools
|
||||
(package
|
||||
(name "gperftools")
|
||||
|
|
Loading…
Reference in a new issue