diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2020-09-05 21:56:34 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2020-09-05 22:30:04 +0300 |
commit | de3c03a47160dec355d9b19ad5ca210d90c15fd7 (patch) | |
tree | 4ca6dc05b5fc9530d812bbb269f1c61ab9efccf3 /gnu/packages/kde.scm | |
parent | ab6fe9d362046231ad6f46eccfd1ea2c9c80b401 (diff) | |
parent | b8477cab7bccc4191ed3dfa3f149aec7917834d8 (diff) |
Merge remote-tracking branch 'origin/master' into staging
Diffstat (limited to 'gnu/packages/kde.scm')
-rw-r--r-- | gnu/packages/kde.scm | 31 |
1 files changed, 22 insertions, 9 deletions
diff --git a/gnu/packages/kde.scm b/gnu/packages/kde.scm index 9a80e362b6..b6e76c867d 100644 --- a/gnu/packages/kde.scm +++ b/gnu/packages/kde.scm @@ -9,6 +9,7 @@ ;;; Copyright © 2018, 2019 Hartmut Goebel <h.goebel@crazy-compilers.com> ;;; Copyright © 2019, 2020 Ludovic Courtès <ludo@gnu.org> ;;; Copyright © 2020 Marius Bakke <marius@gnu.org> +;;; Copyright © 2020 Michael Rohleder <mike@rohleder.de> ;;; ;;; This file is part of GNU Guix. ;;; @@ -40,6 +41,7 @@ #:use-module (gnu packages audio) #:use-module (gnu packages boost) #:use-module (gnu packages code) + #:use-module (gnu packages cpp) #:use-module (gnu packages compression) #:use-module (gnu packages curl) #:use-module (gnu packages documentation) @@ -132,7 +134,7 @@ This package contains GUI widgets for baloo.") (list license:lgpl2.1+ license:fdl1.2+)))) (define-public kdenlive - (let ((version "18.08.1")) + (let ((version "20.04.1")) (package (name "kdenlive") (version version) @@ -140,24 +142,26 @@ This package contains GUI widgets for baloo.") (origin (method git-fetch) (uri (git-reference - (url "git://anongit.kde.org/kdenlive.git") + (url "https://anongit.kde.org/kdenlive.git") (commit (string-append "v" version)))) (file-name (string-append name "-" version "-checkout")) (sha256 (base32 - "0ifnaclsz7w08mc485i3j1kkcpd1m8q5qamckrfwc375ac13xf4g")))) + "0n0x34xmcn0k87rqnz0mk462b3al4gq56kn4m00rr428hafscdz7")))) (build-system cmake-build-system) (native-inputs `(("extra-cmake-modules" ,extra-cmake-modules) ("qttools" ,qttools))) - (propagated-inputs - `(("mlt" ,mlt))) (inputs `(("shared-mime-info" ,shared-mime-info) ("frei0r-plugins" ,frei0r-plugins) + ("ffmpeg" ,ffmpeg) + ("rttr" ,rttr) + ("mlt" ,mlt) ("qtbase" ,qtbase) ("qtscript" ,qtscript) ("qtsvg" ,qtsvg) + ("qtmultimedia" ,qtmultimedia) ("kparts" ,kparts) ("knotifications" ,knotifications) ("karchive" ,karchive) @@ -171,21 +175,27 @@ This package contains GUI widgets for baloo.") ("kdeclarative" ,kdeclarative) ("qtdeclarative" ,qtdeclarative) ("qtquickcontrols" ,qtquickcontrols) + ("qtquickcontrols2" ,qtquickcontrols2) ("kiconthemes" ,kiconthemes) ("qtgraphicaleffects" ,qtgraphicaleffects) ("kplotting" ,kplotting))) (arguments - `(#:phases + `(#:tests? #f ;TODO needs X + #:phases (modify-phases %standard-phases (add-after 'install 'wrap-executable (lambda* (#:key inputs outputs #:allow-other-keys) (let* ((out (assoc-ref outputs "out")) (qtquickcontrols (assoc-ref inputs "qtquickcontrols")) + (qtquickcontrols2 (assoc-ref inputs "qtquickcontrols2")) (qtbase (assoc-ref inputs "qtbase")) (qtdeclarative (assoc-ref inputs "qtdeclarative")) (frei0r (assoc-ref inputs "frei0r-plugins")) + (ffmpeg (assoc-ref inputs "ffmpeg")) (qml "/lib/qt5/qml")) (wrap-program (string-append out "/bin/kdenlive") + `("PATH" ":" prefix + ,(list (string-append ffmpeg "/bin"))) `("QT_PLUGIN_PATH" ":" prefix ,(map (lambda (label) (string-append (assoc-ref inputs label) @@ -197,7 +207,10 @@ This package contains GUI widgets for baloo.") (,(string-append qtbase "/lib/qt5/plugins/platforms"))) `("QML2_IMPORT_PATH" ":" prefix (,(string-append qtquickcontrols qml) - ,(string-append qtdeclarative qml))))) + ,(string-append qtquickcontrols2 qml) + ,(string-append qtdeclarative qml))) + `("MLT_PREFIX" ":" = + (,(assoc-ref inputs "mlt"))))) #t))))) (home-page "https://kdenlive.org") (synopsis "Non-linear video editor") @@ -363,7 +376,7 @@ illustrate project schedules.") (define-public krita (package (name "krita") - (version "4.2.9") + (version "4.3.0") (source (origin (method url-fetch) (uri (string-append @@ -371,7 +384,7 @@ illustrate project schedules.") "/krita-" version ".tar.gz")) (sha256 (base32 - "1a3djmjhnvlp8dpiz68s0lwg71nv3ypq592jfgsnm5zlxa0vp1cz")))) + "1njbxv7b56if838gv7ydzm1sprgmaabnp0jlj0bxryxzfdy8hwfh")))) (build-system cmake-build-system) (arguments `(#:tests? #f |