M gnu/packages/kde-systemtools.scm => gnu/packages/kde-systemtools.scm +4 -12
@@ 264,27 264,19 @@ document meta data file.")
(define-public kio-fuse
(package
(name "kio-fuse")
- (version "5.1.0")
+ (version "5.1.1")
(source (origin
(method url-fetch)
(uri (string-append "mirror://kde/stable/kio-fuse/kio-fuse-"
version ".tar.xz"))
(sha256
(base32
- "0jz9952dd20sw0c25pyn2l86nmc1s5l42gxk4js1jnkx4a0la43x"))))
+ "051xfqfygq11dg6l6522h097raf0yc0sr4vaf5z9ih2mw1yamxmd"))))
(build-system cmake-build-system)
(arguments
(list
- #:configure-flags #~(list "-DQT_MAJOR_VERSION=6")
- #:phases #~(modify-phases %standard-phases
- (replace 'check
- (lambda* (#:key tests? #:allow-other-keys)
- (when tests?
- (setenv "HOME" (getcwd))
- (setenv "XDG_RUNTIME_DIR" (getcwd))
- (setenv "QT_QPA_PLATFORM" "offscreen")
- (invoke "dbus-launch" "ctest" "-E"
- "(fileopstest-cache|fileopstest-filejob)")))))))
+ #:tests? #f ;no tests
+ #:configure-flags #~(list "-DQT_MAJOR_VERSION=6")))
(native-inputs (list dbus extra-cmake-modules pkg-config))
(inputs (list fuse kio kcoreaddons qtbase))
(home-page "https://community.kde.org/Frameworks")