mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 05:18:07 -05:00
gnu: kdenlive: Add breeze-icons.
Since breeze-icons are now longer united into breeze, these need to be explicitly added. * gnu/package/kde.scm (kdenlive)[inputs]: Add breeze-icons. [argmuments]{phases}<wrap-executable>: Add breeze-icons to XDG_DATA_DIRS.
This commit is contained in:
parent
d3f1ef380c
commit
66016b1ae0
1 changed files with 6 additions and 3 deletions
|
@ -185,7 +185,8 @@ (define-public kdenlive
|
|||
("qtquickcontrols" ,qtquickcontrols)
|
||||
("qtquickcontrols2" ,qtquickcontrols2)
|
||||
("kiconthemes" ,kiconthemes)
|
||||
("breeze" ,breeze)
|
||||
("breeze" ,breeze) ; make dark them available easily
|
||||
("breeze-icons" ,breeze-icons) ; recommended icon set
|
||||
("purpose" ,purpose)
|
||||
("qtwebkit" ,qtwebkit)
|
||||
("qtgraphicaleffects" ,qtgraphicaleffects)
|
||||
|
@ -200,12 +201,14 @@ (define-public kdenlive
|
|||
(qtbase (assoc-ref inputs "qtbase"))
|
||||
(frei0r (assoc-ref inputs "frei0r-plugins"))
|
||||
(ffmpeg (assoc-ref inputs "ffmpeg"))
|
||||
(breeze (assoc-ref inputs "breeze")))
|
||||
(breeze (assoc-ref inputs "breeze"))
|
||||
(breeze-icons (assoc-ref inputs "breeze-icons")))
|
||||
(wrap-program (string-append out "/bin/kdenlive")
|
||||
`("PATH" ":" prefix
|
||||
,(list (string-append ffmpeg "/bin")))
|
||||
`("XDG_DATA_DIRS" ":" prefix
|
||||
,(list (string-append breeze "/share")))
|
||||
,(list (string-append breeze "/share")
|
||||
(string-append breeze-icons "/share")))
|
||||
`("QT_PLUGIN_PATH" ":" prefix
|
||||
,(list (getenv "QT_PLUGIN_PATH")))
|
||||
`("FREI0R_PATH" ":" =
|
||||
|
|
Loading…
Reference in a new issue