This is an automated email from the git hooks/post-receive script.

guix_mirror_bot pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 60d67004cf gnu: Add sqlitecpp.
60d67004cf is described below

commit 60d67004cf5eef86843094b2fc478670fb22f9e4
Author: bdunahu <[email protected]>
AuthorDate: Sun Jun 7 18:31:27 2026 -0400

    gnu: Add sqlitecpp.
    
    * gnu/packages/databases.scm (sqlitecpp): New variable.
    
    Merges: https://codeberg.org/guix/guix/pulls/9139
    Reviewed-by: Sharlatan Hellseher <[email protected]>
    Signed-off-by: Nguyễn Gia Phong <[email protected]>
---
 gnu/packages/databases.scm | 34 +++++++++++++++++++++++++++++++++-
 1 file changed, 33 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm
index a2ba1db750..895354a592 100644
--- a/gnu/packages/databases.scm
+++ b/gnu/packages/databases.scm
@@ -67,7 +67,7 @@
 ;;; Copyright © 2025 Ashvith Shetty <[email protected]>
 ;;; Copyright © 2025 Philippe Swartvagher <[email protected]>
 ;;; Copyright © 2025 Simen Endsjø <[email protected]>
-;;; Copyright © 2025 bdunahu <[email protected]>
+;;; Copyright © 2025-2026 bdunahu <[email protected]>
 ;;; Copyright © 2026 Spencer King <[email protected]>
 ;;; Copyright © 2026 Peter Polidoro <[email protected]>
 ;;; Copyright © 2026 Josep Bigorra <[email protected]>
@@ -6176,6 +6176,38 @@ compatible with SQLite using a graphical user 
interface.")
      (list license:gpl3+
            license:mpl2.0))))
 
+(define-public sqlitecpp
+  (package
+    (name "sqlitecpp")
+    (version "3.3.3")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+              (url "https://github.com/SRombauts/SQLiteCpp";)
+              (commit version)))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32
+         "10gliycmzd16ydbpwwsn1r6byf5l78fwwc7hzgjdgg68zcclj8s5"))
+       (modules '((guix build utils)))
+       (snippet #~(delete-file-recursively "sqlite3"))))
+    (build-system cmake-build-system)
+    (arguments
+     (list
+      #:configure-flags #~'("-DSQLITECPP_INTERNAL_SQLITE=OFF"
+                            "-DSQLITECPP_INCLUDE_SCRIPT=OFF"
+                            "-DSQLITECPP_BUILD_TESTS=ON"
+                            "-DBUILD_SHARED_LIBS=ON")))
+    (inputs (list sqlite))
+    (native-inputs (list googletest))
+    (home-page "https://srombauts.github.io/SQLiteCpp/";)
+    (synopsis "C++ SQLite3 wrapper")
+    (description "SQLiteC++ offers a intuitive C++ wrapper around the native C
+APIs of SQLite, prioritizing speed, minimal dependencies, and portability.")
+    ;; Complementary cmake and code-linter 3-clause BSD.
+    (license license:expat)))
+
 (define-public sqlitestudio
   (package
     (name "sqlitestudio")

Reply via email to