mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-28 15:22:18 -05:00
gnu: kio: Add more inputs.
* gnu/packages/kde-frameworks.scm (kio)[inputs]: Add kded and qtdeclarative-5. [propagated-inputs]: Add libacl. [arguments]: Enable 2 passing tests. Use gexp. Signed-off-by: Marius Bakke <marius@gnu.org>
This commit is contained in:
parent
afbb65243d
commit
5f3c3d53eb
1 changed files with 11 additions and 12 deletions
|
@ -2641,7 +2641,8 @@ (define-public kio
|
|||
(patches (search-patches "kio-search-smbd-on-PATH.patch"))))
|
||||
(build-system cmake-build-system)
|
||||
(propagated-inputs
|
||||
(list kbookmarks
|
||||
(list acl
|
||||
kbookmarks
|
||||
kconfig
|
||||
kcompletion
|
||||
kcoreaddons
|
||||
|
@ -2653,14 +2654,14 @@ (define-public kio
|
|||
solid))
|
||||
(native-inputs
|
||||
(list extra-cmake-modules dbus kdoctools qttools-5))
|
||||
(inputs (list ;; TODO: LibACL , <ftp://oss.sgi.com/projects/xfs/cmd_tars>
|
||||
mit-krb5
|
||||
(inputs (list mit-krb5
|
||||
karchive
|
||||
kauth
|
||||
kcodecs
|
||||
kconfigwidgets
|
||||
kcrash
|
||||
kdbusaddons
|
||||
kded
|
||||
kguiaddons
|
||||
kiconthemes
|
||||
ki18n
|
||||
|
@ -2671,14 +2672,15 @@ (define-public kio
|
|||
libxml2
|
||||
libxslt
|
||||
qtbase-5
|
||||
qtdeclarative-5
|
||||
qtscript
|
||||
qtx11extras
|
||||
sonnet
|
||||
`(,util-linux "lib") ; libmount
|
||||
zlib))
|
||||
(arguments
|
||||
`(#:phases
|
||||
(modify-phases %standard-phases
|
||||
(list #:phases
|
||||
#~(modify-phases %standard-phases
|
||||
(add-after 'unpack 'patch
|
||||
(lambda _
|
||||
;; Better error message (taken from NixOS)
|
||||
|
@ -2693,10 +2695,10 @@ (define-public kio
|
|||
(setenv "QT_QPA_PLATFORM" "offscreen")
|
||||
(setenv "DBUS_FATAL_WARNINGS" "0")
|
||||
(invoke "dbus-launch" "ctest"
|
||||
"-E" ; FIXME: 19/67 tests fail.
|
||||
"-E" ; FIXME: 17/69 tests fail.
|
||||
(string-append "(kiocore-jobtest"
|
||||
"|fileitemtest"
|
||||
"|kiocore-kmountpointtest"
|
||||
"|kiocore-kfileitemtest"
|
||||
"|kiocore-ktcpsockettest"
|
||||
"|kiocore-mimetypefinderjobtest"
|
||||
"|kiocore-krecentdocumenttest"
|
||||
|
@ -2708,18 +2710,15 @@ (define-public kio
|
|||
"|commandlauncherjob_forkingtest"
|
||||
"|commandlauncherjob_scopetest"
|
||||
"|commandlauncherjob_servicetest"
|
||||
"|kiowidgets-kdirlistertest"
|
||||
"|kiowidgets-kdirmodeltest"
|
||||
"|kiowidgets-kurifiltertest-colon-separator"
|
||||
"|kiowidgets-kurifiltertest-space-separator"
|
||||
"|kiofilewidgets-knewfilemenutest)")))))
|
||||
"|kiowidgets-kurifiltertest-space-separator)")))))
|
||||
(add-after 'install 'add-symlinks
|
||||
;; Some package(s) (e.g. bluedevil) refer to these service types by
|
||||
;; the wrong name. I would prefer to patch those packages, but I
|
||||
;; cannot find the files!
|
||||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
(let ((kst5 (string-append (assoc-ref outputs "out")
|
||||
"/share/kservicetypes5/")))
|
||||
(let ((kst5 (string-append #$output "/share/kservicetypes5/")))
|
||||
(symlink (string-append kst5 "kfileitemactionplugin.desktop")
|
||||
(string-append kst5 "kfileitemaction-plugin.desktop"))))))))
|
||||
(home-page "https://community.kde.org/Frameworks")
|
||||
|
|
Loading…
Reference in a new issue