guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 0d12c3d9ab8cf043ea7c57f18e90f77eee6b6b33
Author: David Elsing <[email protected]>
AuthorDate: Tue Jul 29 16:19:32 2025 +0200

    gnu: Add zpp-serializer.
    
    * gnu/packages/cpp.scm (zpp-serializer): New variable.
    
    Change-Id: I8a708892b34bef975572292edb6731a108d6646e
    Signed-off-by: Sharlatan Hellseher <[email protected]>
---
 gnu/packages/cpp.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

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)))

Reply via email to