mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-20 14:47:20 +01:00
gnu: kdenlive: Use qt-build-system.
* gnu/packages/kde.scm (kdenlive)[build-system]: Use qt-build-system. [arguments]<#:phases>: Do not wrap variables that are wrapped by qt-build-system in 'wrap-executable. Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
This commit is contained in:
parent
d78e8caeb5
commit
8ca1f52e47
1 changed files with 2 additions and 11 deletions
|
@ -232,7 +232,7 @@ (define-public kdenlive
|
|||
(file-name (string-append name "-" version "-checkout"))
|
||||
(sha256
|
||||
(base32 "1fvy2aa86pn4crk8lgxjh1kdn2lxzi66krnrr9m91mp89mmc760k"))))
|
||||
(build-system cmake-build-system)
|
||||
(build-system qt-build-system)
|
||||
(native-inputs
|
||||
`(("extra-cmake-modules" ,extra-cmake-modules)
|
||||
("pkg-config" ,pkg-config)
|
||||
|
@ -277,23 +277,14 @@ (define-public kdenlive
|
|||
(let* ((out (assoc-ref outputs "out"))
|
||||
(qtbase (assoc-ref inputs "qtbase"))
|
||||
(frei0r (assoc-ref inputs "frei0r-plugins"))
|
||||
(ffmpeg (assoc-ref inputs "ffmpeg"))
|
||||
(breeze (assoc-ref inputs "breeze"))
|
||||
(breeze-icons (assoc-ref inputs "breeze-icons")))
|
||||
(ffmpeg (assoc-ref inputs "ffmpeg")))
|
||||
(wrap-program (string-append out "/bin/kdenlive")
|
||||
`("PATH" ":" prefix
|
||||
,(list (string-append ffmpeg "/bin")))
|
||||
`("XDG_DATA_DIRS" ":" prefix
|
||||
,(list (string-append breeze "/share")
|
||||
(string-append breeze-icons "/share")))
|
||||
`("QT_PLUGIN_PATH" ":" prefix
|
||||
,(list (getenv "QT_PLUGIN_PATH")))
|
||||
`("FREI0R_PATH" ":" =
|
||||
(,(string-append frei0r "/lib/frei0r-1/")))
|
||||
`("QT_QPA_PLATFORM_PLUGIN_PATH" ":" =
|
||||
(,(string-append qtbase "/lib/qt5/plugins/platforms")))
|
||||
`("QML2_IMPORT_PATH" ":" prefix
|
||||
,(list (getenv "QML2_IMPORT_PATH")))
|
||||
`("MLT_PREFIX" ":" =
|
||||
(,(assoc-ref inputs "mlt"))))))))))
|
||||
(home-page "https://kdenlive.org")
|
||||
|
|
Loading…
Reference in a new issue