[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#51085] [PATCH 5/7] gnu: Add spscqueue.
From: |
Vinicius Monego |
Subject: |
[bug#51085] [PATCH 5/7] gnu: Add spscqueue. |
Date: |
Thu, 7 Oct 2021 14:29:39 +0000 |
* gnu/packages/cpp.scm (spscqueue): New variable.
---
gnu/packages/cpp.scm | 21 +++++++++++++++++++++
1 file changed, 21 insertions(+)
diff --git a/gnu/packages/cpp.scm b/gnu/packages/cpp.scm
index 4af71ba93a..d755cc0fc7 100644
--- a/gnu/packages/cpp.scm
+++ b/gnu/packages/cpp.scm
@@ -517,6 +517,27 @@ syntax highlighting. @code{ccls} is derived from
@code{cquery} which is not
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")
--
2.30.2
- [bug#51085] [PATCH 0/7] Add Mixxx., Vinicius Monego, 2021/10/07
- [bug#51085] [PATCH 1/7] gnu: Add libkeyfinder., Vinicius Monego, 2021/10/07
- [bug#51085] [PATCH 3/7] gnu: opusfile: Add new phase after unpack., Vinicius Monego, 2021/10/07
- [bug#51085] [PATCH 5/7] gnu: Add spscqueue.,
Vinicius Monego <=
- [bug#51085] [PATCH 4/7] gnu: Add libshout-idjc., Vinicius Monego, 2021/10/07
- [bug#51085] [PATCH 2/7] gnu: Add libdjinterop., Vinicius Monego, 2021/10/07
- [bug#51085] [PATCH 7/7] gnu: Add mixxx., Vinicius Monego, 2021/10/07
- [bug#51085] [PATCH 6/7] gnu: Add mp3guessenc., Vinicius Monego, 2021/10/07
- [bug#51085] [PATCH v2 1/7] gnu: Add libkeyfinder., Vinicius Monego, 2021/10/09