From 66ab04436c6707526825e92d4b6a753121d72ffd Mon Sep 17 00:00:00 2001 From: Franz Geffke Date: Sat, 30 Mar 2024 16:42:55 +0000 Subject: qtutilities: moved to qt module --- px/packages/desktop-tools.scm | 22 +--------------------- px/packages/qt.scm | 23 ++++++++++++++++++++++- 2 files changed, 23 insertions(+), 22 deletions(-) diff --git a/px/packages/desktop-tools.scm b/px/packages/desktop-tools.scm index 34a0452..6dd7cb4 100644 --- a/px/packages/desktop-tools.scm +++ b/px/packages/desktop-tools.scm @@ -38,6 +38,7 @@ #:use-module (gnu packages xorg) #:use-module (gnu packages kde-frameworks) #:use-module (px packages images) + #:use-module (px packages qt) #:use-module (srfi srfi-1)) (define-public px-recoll @@ -188,27 +189,6 @@ argument parser, IO and conversion utilities.") (license license:gpl2+))) -(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+))) - (define-public fork-awesome (package (name "fork-awesome") 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 -- cgit v1.2.3