Skip to content
Snippets Groups Projects
Unverified Commit e33a1e54 authored by Prafulla Giri's avatar Prafulla Giri Committed by Ludovic Courtès
Browse files

gnu: kde: kdenlive: Make breeze theme available at runtime.


* gnu/packages/kde.scm (kdenlive):
[inputs]: Add breeze.
[arguments]: In wrap-program phase, add XDG_DATA_DIRS to include
the 'share' sub-directory of the package breeze.

Signed-off-by: default avatarLudovic Courtès <ludo@gnu.org>
parent 0d63abeb
No related branches found
No related tags found
No related merge requests found
......@@ -177,6 +177,7 @@ (define-public kdenlive
("qtquickcontrols" ,qtquickcontrols)
("qtquickcontrols2" ,qtquickcontrols2)
("kiconthemes" ,kiconthemes)
("breeze" ,breeze)
("qtgraphicaleffects" ,qtgraphicaleffects)
("kplotting" ,kplotting)))
(arguments
......@@ -192,10 +193,13 @@ (define-public kdenlive
(qtdeclarative (assoc-ref inputs "qtdeclarative"))
(frei0r (assoc-ref inputs "frei0r-plugins"))
(ffmpeg (assoc-ref inputs "ffmpeg"))
(breeze (assoc-ref inputs "breeze"))
(qml "/lib/qt5/qml"))
(wrap-program (string-append out "/bin/kdenlive")
`("PATH" ":" prefix
,(list (string-append ffmpeg "/bin")))
`("XDG_DATA_DIRS" ":" prefix
,(list (string-append breeze "/share")))
`("QT_PLUGIN_PATH" ":" prefix
,(map (lambda (label)
(string-append (assoc-ref inputs label)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment