diff options
author | David Elsing <david.elsing@posteo.net> | 2025-07-29 16:19:32 +0200 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-31 23:19:19 +0100 |
commit | 0d12c3d9ab8cf043ea7c57f18e90f77eee6b6b33 (patch) | |
tree | 4129be8bb934f75d92a1bee6eb22ffab979e1ff6 | |
parent | 3ac34584f141c981a1412724a602a20e8cdb89a1 (diff) |
gnu: Add zpp-serializer.
* gnu/packages/cpp.scm (zpp-serializer): New variable.
Change-Id: I8a708892b34bef975572292edb6731a108d6646e
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
-rw-r--r-- | gnu/packages/cpp.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/cpp.scm b/gnu/packages/cpp.scm index 0e61b49bbf..4c75400dea 100644 --- a/gnu/packages/cpp.scm +++ b/gnu/packages/cpp.scm @@ -4543,3 +4543,26 @@ written in C99.") (properties `((tunable? . #t))) (home-page "https://github.com/aklomp/base64") (license license:bsd-2))) + +(define-public zpp-serializer + (package + (name "zpp-serializer") + (version "0.5") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/eyalz800/serializer") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0cmk3xx9885zgg3g96ka6cdaibi10fbpf1bi7q8lqsli6z07x4zj")))) + (build-system copy-build-system) + (arguments + (list + #:install-plan #~'(("serializer.h" "include/zpp/")))) + (home-page "https://github.com/eyalz800/serializer") + (synopsis "Single header standard C++ serialization framework") + (description "This package provides a single-header C++14 library for +saving and loading C++ objects using a binary format.") + (license license:expat))) |