gnu: kio-fuse: Move to kde-systemtools.scm.

* gnu/packages/kde.scm (kio-fuse): Delete variable.
* gnu/packages/kde-systemtools.scm (kio-fuse): New variable.

Change-Id: I48c2c4f0384259d71541ab962ce66e2f5dec9d74
This commit is contained in:
Sughosha 2025-09-18 18:07:02 +05:30 committed by Zheng Junjie
parent 959fed3a9c
commit d75aa2a52b
No known key found for this signature in database
GPG key ID: 3B5AA993E1A2DFF0
2 changed files with 31 additions and 32 deletions

View file

@ -231,6 +231,37 @@ also described by a meta data file which contains the same information as a
document meta data file.")
(license license:gpl2+)))
(define-public kio-fuse
(package
(name "kio-fuse")
(version "5.1.0")
(source (origin
(method url-fetch)
(uri (string-append "mirror://kde/stable/kio-fuse/kio-fuse-"
version ".tar.xz"))
(sha256
(base32
"0jz9952dd20sw0c25pyn2l86nmc1s5l42gxk4js1jnkx4a0la43x"))))
(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)")))))))
(native-inputs (list dbus extra-cmake-modules pkg-config))
(inputs (list fuse kio kcoreaddons qtbase))
(home-page "https://community.kde.org/Frameworks")
(synopsis "FUSE Interface for KIO")
(description "This package provides FUSE Interface for KIO.")
(license license:lgpl2.1+)))
(define-public kpmcore
(package
(name "kpmcore")

View file

@ -88,7 +88,6 @@
;; Including this module breaks the build.
;#:use-module ((gnu packages kde-systemtools) #:select (dolphin))
#:use-module (gnu packages libusb)
#:use-module (gnu packages linux)
#:use-module (gnu packages llvm)
#:use-module (gnu packages markup)
#:use-module (gnu packages maths)
@ -808,37 +807,6 @@ KDSoap.")
the functionality of the KDE resource and network access abstractions.")
(license license:lgpl2.0+)))
(define-public kio-fuse
(package
(name "kio-fuse")
(version "5.1.0")
(source (origin
(method url-fetch)
(uri (string-append "mirror://kde/stable/kio-fuse/kio-fuse-"
version ".tar.xz"))
(sha256
(base32
"0jz9952dd20sw0c25pyn2l86nmc1s5l42gxk4js1jnkx4a0la43x"))))
(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)")))))))
(native-inputs (list dbus extra-cmake-modules pkg-config))
(inputs (list fuse kio kcoreaddons qtbase))
(home-page "https://community.kde.org/Frameworks")
(synopsis "FUSE Interface for KIO")
(description "This package provides FUSE Interface for KIO.")
(license license:lgpl2.1+)))
(define-public kirigami-addons
(package
(name "kirigami-addons")