diff options
author | Timotej Lazar <timotej.lazar@araneo.si> | 2024-07-20 08:57:25 +0200 |
---|---|---|
committer | Zheng Junjie <zhengjunjie@iscas.ac.cn> | 2024-07-25 12:38:08 +0800 |
commit | e64c6f0dedaf58b9e82e5a04ccbac85ef2e2c27b (patch) | |
tree | 25ef4b66268205bab0ef3e8a482e1513511b27bd /gnu | |
parent | 01ae23649516f9ef0d9e824cf541f380047714e6 (diff) | |
download | guix-e64c6f0dedaf58b9e82e5a04ccbac85ef2e2c27b.tar.gz guix-e64c6f0dedaf58b9e82e5a04ccbac85ef2e2c27b.zip |
gnu: Add kdsingleapplication.
* gnu/packages/qt.scm (kdsingleapplication): New variable.
Change-Id: I08407da35712d465f9573f6bf1de0cc2e8435cb1
Signed-off-by: Zheng Junjie <zhengjunjie@iscas.ac.cn>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/qt.scm | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/gnu/packages/qt.scm b/gnu/packages/qt.scm index 0138fd3dbf..c150dca78b 100644 --- a/gnu/packages/qt.scm +++ b/gnu/packages/qt.scm @@ -5214,6 +5214,32 @@ protocol. The DBusMenu protocol makes it possible for applications to export and import their menus over DBus.") (license license:lgpl2.1+))) +(define-public kdsingleapplication + (package + (name "kdsingleapplication") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/KDAB/KDSingleApplication") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1w7wg9w4mifrkpn7hhw1nnnwh1vhnf8i4wgfxvh44nacwslbwsb2")))) + (build-system qt-build-system) + (arguments + (list + #:qtbase qtbase + #:configure-flags + #~(list "-DKDSingleApplication_QT6=true" "-DKDSingleApplication_TESTS=true"))) + (inputs (list libxkbcommon vulkan-headers)) + (home-page "https://github.com/KDAB/KDSingleApplication") + (synopsis "Qt helper class for single-instance policy applications") + (description "KD SingleApplication is a helper class for single-instance +policy applications.") + (license (list license:bsd-3 license:expat)))) + (define-public kdsoap (package (name "kdsoap") |