z572 pushed a commit to branch kde-team
in repository guix.
commit 267bc43f615243ce585c48086b2d075847d8737b
Author: Zheng Junjie <[email protected]>
AuthorDate: Sat Jul 6 16:59:36 2024 +0800
gnu: Add futuresql.
* gnu/packages/kde.scm (futuresql): New variable.
Change-Id: Ic2e62701d1ed1240aa1dd207869c7f7c9026d23a
---
gnu/packages/kde.scm | 23 +++++++++++++++++++++++
1 file changed, 23 insertions(+)
diff --git a/gnu/packages/kde.scm b/gnu/packages/kde.scm
index 877945afee..ccbb918561 100644
--- a/gnu/packages/kde.scm
+++ b/gnu/packages/kde.scm
@@ -135,6 +135,29 @@
This package contains GUI widgets for baloo.")
(license license:lgpl2.0+)))
+(define-public futuresql
+ (package
+ (name "futuresql")
+ (version "0.1.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "mirror://kde/stable/futuresql/futuresql-"
+ version ".tar.xz"))
+ (sha256
+ (base32 "0hxxpv672jw3d14gk6dilphfcwkmbyffv0r9pakkr2v1m7axhkp4"))))
+ (build-system qt-build-system)
+ (native-inputs
+ (list extra-cmake-modules))
+ (inputs (list qcoro-qt6))
+ (arguments
+ (list #:qtbase qtbase
+ #:configure-flags #~(list "-DQT_MAJOR_VERSION=6")))
+ (home-page "https://api.kde.org/futuresql/html/index.html")
+ (synopsis "Non-blocking Qt database framework")
+ (description "This package provides a non-blocking Qt database framework.")
+ (license license:lgpl2.1+)))
+
(define-public grantleetheme
(package
(name "grantleetheme")