summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gnu/packages/kde-internet.scm12
1 files changed, 10 insertions, 2 deletions
diff --git a/gnu/packages/kde-internet.scm b/gnu/packages/kde-internet.scm
index 3206fb1559a..d08c6eaeea2 100644
--- a/gnu/packages/kde-internet.scm
+++ b/gnu/packages/kde-internet.scm
@@ -37,6 +37,7 @@
37 #:use-module (guix packages) 37 #:use-module (guix packages)
38 #:use-module (guix utils) 38 #:use-module (guix utils)
39 #:use-module (gnu packages) 39 #:use-module (gnu packages)
40 #:use-module (gnu packages bash)
40 #:use-module (gnu packages boost) 41 #:use-module (gnu packages boost)
41 #:use-module (gnu packages compression) 42 #:use-module (gnu packages compression)
42 #:use-module (gnu packages crypto) 43 #:use-module (gnu packages crypto)
@@ -209,10 +210,17 @@ framework. It builds XMPP clients complying with the XMPP Compliance Suites
209 (add-before 'check 'set-home 210 (add-before 'check 'set-home
210 (lambda _ 211 (lambda _
211 ;; Tests need write permission in $HOME. 212 ;; Tests need write permission in $HOME.
212 (setenv "HOME" "/tmp")))))) 213 (setenv "HOME" "/tmp")))
214 (add-after 'install 'wrap-program
215 (lambda _
216 (let ((gst-plugin-path (getenv "GST_PLUGIN_SYSTEM_PATH")))
217 (wrap-program (string-append #$output "/bin/kaidan")
218 `("GST_PLUGIN_SYSTEM_PATH" ":" prefix (,gst-plugin-path)))))))))
213 (native-inputs (list extra-cmake-modules 219 (native-inputs (list extra-cmake-modules
214 pkg-config)) 220 pkg-config))
215 (inputs (list gstreamer 221 (inputs (list bash-minimal
222 gst-plugins-good-qt
223 gstreamer
216 icu4c 224 icu4c
217 kcrash 225 kcrash
218 kdsingleapplication 226 kdsingleapplication