gnu: kdsingleapplication: Improve package.

* gnu/packages/qt.scm (kdsingleapplication)[arguments]: Use ON instead of true
for cmake #:configure-flags.
[license]: Note files covered by each license.

Change-Id: Ia10b43e881e457bb80f0b773a3a64a40a1d8becb
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
This commit is contained in:
Timotej Lazar 2024-07-31 20:57:12 +02:00 committed by Maxim Cournoyer
parent 86690427b6
commit 51ba1e375e
No known key found for this signature in database
GPG key ID: 1260E46482E63562

View file

@ -5232,13 +5232,15 @@ (define-public kdsingleapplication
(list
#:qtbase qtbase
#:configure-flags
#~(list "-DKDSingleApplication_QT6=true" "-DKDSingleApplication_TESTS=true")))
#~(list "-DKDSingleApplication_QT6=ON" "-DKDSingleApplication_TESTS=ON")))
(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))))
(license
(list license:bsd-3 ; cmake/*
license:expat)))) ; everything else
(define-public kdsoap
(package