mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
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:
parent
959fed3a9c
commit
d75aa2a52b
2 changed files with 31 additions and 32 deletions
|
@ -231,6 +231,37 @@ also described by a meta data file which contains the same information as a
|
||||||
document meta data file.")
|
document meta data file.")
|
||||||
(license license:gpl2+)))
|
(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
|
(define-public kpmcore
|
||||||
(package
|
(package
|
||||||
(name "kpmcore")
|
(name "kpmcore")
|
||||||
|
|
|
@ -88,7 +88,6 @@
|
||||||
;; Including this module breaks the build.
|
;; Including this module breaks the build.
|
||||||
;#:use-module ((gnu packages kde-systemtools) #:select (dolphin))
|
;#:use-module ((gnu packages kde-systemtools) #:select (dolphin))
|
||||||
#:use-module (gnu packages libusb)
|
#:use-module (gnu packages libusb)
|
||||||
#:use-module (gnu packages linux)
|
|
||||||
#:use-module (gnu packages llvm)
|
#:use-module (gnu packages llvm)
|
||||||
#:use-module (gnu packages markup)
|
#:use-module (gnu packages markup)
|
||||||
#:use-module (gnu packages maths)
|
#:use-module (gnu packages maths)
|
||||||
|
@ -808,37 +807,6 @@ KDSoap.")
|
||||||
the functionality of the KDE resource and network access abstractions.")
|
the functionality of the KDE resource and network access abstractions.")
|
||||||
(license license:lgpl2.0+)))
|
(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
|
(define-public kirigami-addons
|
||||||
(package
|
(package
|
||||||
(name "kirigami-addons")
|
(name "kirigami-addons")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue