[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#63065] [PATCH 02/18] gnu: Add bitsery.
From: |
Sughosha |
Subject: |
[bug#63065] [PATCH 02/18] gnu: Add bitsery. |
Date: |
Tue, 25 Apr 2023 09:27:05 +0000 |
* gnu/packages/cpp.scm (bitsery): New variable.
---
gnu/packages/cpp.scm | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
diff --git a/gnu/packages/cpp.scm b/gnu/packages/cpp.scm
index ed6ae69198..699d0cacb1 100644
--- a/gnu/packages/cpp.scm
+++ b/gnu/packages/cpp.scm
@@ -1982,6 +1982,30 @@ (define-public gulrak-filesystem
(home-page "https://github.com/gulrak/filesystem")
(license license:expat)))
+(define-public bitsery
+ (package
+ (name "bitsery")
+ (version "5.2.3")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/fraillt/bitsery")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "1hv2fya7w53bfhlk79b1qnjg1qy076s8kvg22sfdq05bh0hxqrxf"))))
+ (build-system cmake-build-system)
+ (arguments
+ (list #:configure-flags #~(list "-DBITSERY_BUILD_TESTS=ON")))
+ (native-inputs (list googletest))
+ (synopsis "Header only C++ binary serialization library")
+ (description "This package provides header only C++ binary serialization
+library. It is designed around the networking requirements for real-time data
+delivery, especially for games.")
+ (home-page "https://github.com/fraillt/bitsery")
+ (license license:expat)))
+
(define-public cpp-mustache
(package
(name "cpp-mustache")
--
2.39.2
- [bug#63065] [PATCH 0/18]: gnu: Add yabridgectl., Sughosha, 2023/04/25
- [bug#63065] [PATCH 01/18] gnu: asio: Update to 1.24.0., Sughosha, 2023/04/25
- [bug#63065] [PATCH 02/18] gnu: Add bitsery.,
Sughosha <=
- [bug#63065] [PATCH 03/18] gnu: Add function2., Sughosha, 2023/04/25
- [bug#63065] [PATCH 05/18] gnu: Add clap., Sughosha, 2023/04/25
- [bug#63065] [PATCH 04/18] gnu: Add tomlplusplus., Sughosha, 2023/04/25
- [bug#63065] [PATCH 06/18] gnu: Add vst3sdk., Sughosha, 2023/04/25
- [bug#63065] [PATCH 08/18] gnu: Add rust-scroll-derive-0.11., Sughosha, 2023/04/25
- [bug#63065] [PATCH 07/18] gnu: Add yabridge., Sughosha, 2023/04/25
- [bug#63065] [PATCH 09/18] gnu: Add rust-scroll-0.11., Sughosha, 2023/04/25
- [bug#63065] [PATCH 10/18] gnu: Add rust-goblin-0.6., Sughosha, 2023/04/25
- [bug#63065] [PATCH 11/18] gnu: rust-libloading-0.7: Update to 0.7.4., Sughosha, 2023/04/25
- [bug#63065] [PATCH 12/18] gnu: Add rust-rustyline-derive-0.6., Sughosha, 2023/04/25