gnu: knotifications: Update to 5.27.0.
* gnu/packages/kde-frameworks.scm (knotifications): Update to 5.27.0 and fix indentation.
This commit is contained in:
parent
4a9f3bf33b
commit
7507399846
|
@ -1377,16 +1377,16 @@ asynchronous jobs.")
|
||||||
(define-public knotifications
|
(define-public knotifications
|
||||||
(package
|
(package
|
||||||
(name "knotifications")
|
(name "knotifications")
|
||||||
(version "5.24.0")
|
(version "5.27.0")
|
||||||
(source
|
(source (origin
|
||||||
(origin
|
(method url-fetch)
|
||||||
(method url-fetch)
|
(uri (string-append
|
||||||
(uri (string-append "mirror://kde/stable/frameworks/"
|
"mirror://kde/stable/frameworks/"
|
||||||
(version-major+minor version) "/"
|
(version-major+minor version) "/"
|
||||||
name "-" version ".tar.xz"))
|
name "-" version ".tar.xz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0qryp41phnpx4r9wa6rfhmnzy7nxl0ijnyrafadf2n2xb53ipkpa"))))
|
"09v122nxfgqjzr2azfn2nh4q9l22i5wnsz9prs0i7s3m7y0d7pxn"))))
|
||||||
(build-system cmake-build-system)
|
(build-system cmake-build-system)
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("extra-cmake-modules" ,extra-cmake-modules)
|
`(("extra-cmake-modules" ,extra-cmake-modules)
|
||||||
|
@ -1404,10 +1404,11 @@ asynchronous jobs.")
|
||||||
`(#:phases
|
`(#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(add-before 'check 'check-setup
|
(add-before 'check 'check-setup
|
||||||
(lambda* _
|
(lambda _
|
||||||
(setenv "HOME" (getcwd))))
|
(setenv "HOME" (getcwd))
|
||||||
|
#t))
|
||||||
(replace 'check
|
(replace 'check
|
||||||
(lambda* _
|
(lambda _
|
||||||
(setenv "DBUS_FATAL_WARNINGS" "0")
|
(setenv "DBUS_FATAL_WARNINGS" "0")
|
||||||
(zero? (system* "dbus-launch" "ctest" ".")))))))
|
(zero? (system* "dbus-launch" "ctest" ".")))))))
|
||||||
(home-page "https://community.kde.org/Frameworks")
|
(home-page "https://community.kde.org/Frameworks")
|
||||||
|
|
Loading…
Reference in New Issue