gnu: knotifications: Update to 6.16.0.

* gnu/packages/kde-frameworks.scm (knotifications): Update to 6.16.0.
[arguments]<#:configure-flags>: Add -DBUILD_PYTHON_BINDINGS=OFF.

Change-Id: I081ecc54720b950a0a22f80b51b68c56f61d348f
This commit is contained in:
Zheng Junjie 2025-07-21 16:02:35 +08:00
parent 4506122e17
commit 2893f53a16
No known key found for this signature in database
GPG key ID: 3B5AA993E1A2DFF0

View file

@ -2813,7 +2813,7 @@ asynchronous jobs.")
(define-public knotifications (define-public knotifications
(package (package
(name "knotifications") (name "knotifications")
(version "6.13.0") (version "6.16.0")
(source (origin (source (origin
(method url-fetch) (method url-fetch)
(uri (string-append (uri (string-append
@ -2822,9 +2822,13 @@ asynchronous jobs.")
name "-" version ".tar.xz")) name "-" version ".tar.xz"))
(sha256 (sha256
(base32 (base32
"1pgrd42wgd6ffy52mfs9ii1l87lvx772w4blr05p03z898fjzcfj")))) "17rvm4y5ig6bwbxg4q41cwzybpg0n2555mz98miljyk5b48a8ga2"))))
(build-system cmake-build-system) (build-system cmake-build-system)
(arguments (list #:tests? #f)) (arguments
(list #:tests? #f
#:configure-flags
;; XXX: build python bindings.
#~(list "-DBUILD_PYTHON_BINDINGS=OFF")))
(native-inputs (native-inputs
(list extra-cmake-modules pkg-config qttools)) (list extra-cmake-modules pkg-config qttools))
(propagated-inputs (list qtdeclarative)) (propagated-inputs (list qtdeclarative))