summaryrefslogtreecommitdiff
path: root/px/packages/qt.scm
diff options
context:
space:
mode:
authorFranz Geffke <franz@pantherx.org>2024-03-30 16:42:55 +0000
committerFranz Geffke <franz@pantherx.org>2024-03-30 16:42:55 +0000
commit66ab04436c6707526825e92d4b6a753121d72ffd (patch)
tree127592c3dde27c7e778dee95f6a7a5c940248096 /px/packages/qt.scm
parent20c3eb56d2cca96c4b87c1d4379e61ed9453d0d1 (diff)
qtutilities: moved to qt module
Diffstat (limited to 'px/packages/qt.scm')
-rw-r--r--px/packages/qt.scm23
1 files changed, 22 insertions, 1 deletions
diff --git a/px/packages/qt.scm b/px/packages/qt.scm
index 7b7e046..053bc5e 100644
--- a/px/packages/qt.scm
+++ b/px/packages/qt.scm
@@ -142,4 +142,25 @@
(home-page "https://github.com/vladest/googlemaps")
(synopsis "Google Maps plugin for QtLocation")
(description "GoogleMaps plugin for QtLocation module")
- (license license:gpl3+))) \ No newline at end of file
+ (license license:gpl3+)))
+
+(define-public qtutilities
+ (package
+ (name "qtutilities")
+ (version "6.12.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "https://github.com/Martchus/qtutilities/archive/refs/tags/v"
+ version ".tar.gz"))
+ (sha256
+ (base32 "0b58i66hhfg18d9bzbkzx8m34x070af5k3dankz5q69dr1lbrf6k"))))
+ (build-system cmake-build-system)
+ (native-inputs (list cpputilities qtbase-5 qttools-5))
+ (arguments
+ `(#:tests? #f))
+ (home-page "https://github.com/Martchus/qtutilities")
+ (synopsis "Common Qt related C++ classes and routines")
+ (description "Common Qt related C++ classes and routines")
+ (license license:gpl2+))) \ No newline at end of file