Skip to content
Snippets Groups Projects
Unverified Commit c84384cb authored by Thomas Danckaert's avatar Thomas Danckaert
Browse files

gnu: kdevelop: Update to 5.1.1.

* gnu/packages/kde.scm (kdevelop): Update to 5.1.1.
[arguments]: Set QT_QPA_PLATFORM_PLUGIN_PATH during the wrap-executable
phase.
(kdevplatform): Update to 5.1.1.
parent 07bf6929
No related branches found
No related tags found
No related merge requests found
...@@ -39,7 +39,7 @@ (define-module (gnu packages kde) ...@@ -39,7 +39,7 @@ (define-module (gnu packages kde)
(define-public kdevelop (define-public kdevelop
(package (package
(name "kdevelop") (name "kdevelop")
(version "5.1.0") (version "5.1.1")
(source (source
(origin (origin
(method url-fetch) (method url-fetch)
...@@ -48,7 +48,7 @@ (define-public kdevelop ...@@ -48,7 +48,7 @@ (define-public kdevelop
version ".tar.xz")) version ".tar.xz"))
(sha256 (sha256
(base32 (base32
"1s4cbkx2a0p73b52yxmf5dhv08xk9pxgrkjsnbzy76ssfr545g60")))) "0m6pnmylp1gij5cr75waz8hjry5894qillj5977h467hnbzs808a"))))
(build-system cmake-build-system) (build-system cmake-build-system)
(native-inputs (native-inputs
`(("extra-cmake-modules" ,extra-cmake-modules) `(("extra-cmake-modules" ,extra-cmake-modules)
...@@ -100,6 +100,7 @@ (define-public kdevelop ...@@ -100,6 +100,7 @@ (define-public kdevelop
(kio (assoc-ref inputs "kio")) (kio (assoc-ref inputs "kio"))
(kcmutils (assoc-ref inputs "kcmutils")) (kcmutils (assoc-ref inputs "kcmutils"))
(qtquickcontrols (assoc-ref inputs "qtquickcontrols")) (qtquickcontrols (assoc-ref inputs "qtquickcontrols"))
(qtbase (assoc-ref inputs "qtbase"))
(qtdeclarative (assoc-ref inputs "qtdeclarative")) (qtdeclarative (assoc-ref inputs "qtdeclarative"))
(profile "$HOME/.guix-profile") (profile "$HOME/.guix-profile")
(qml "/qml")) (qml "/qml"))
...@@ -107,6 +108,8 @@ (define-public kdevelop ...@@ -107,6 +108,8 @@ (define-public kdevelop
`("XDG_DATA_DIRS" ":" prefix `("XDG_DATA_DIRS" ":" prefix
,(map (lambda (s) (string-append s "/share")) ,(map (lambda (s) (string-append s "/share"))
(list profile out kdevplatform kcmutils))) (list profile out kdevplatform kcmutils)))
`("QT_QPA_PLATFORM_PLUGIN_PATH" ":" =
(,(string-append qtbase "/plugins/platforms")))
`("QT_PLUGIN_PATH" ":" prefix `("QT_PLUGIN_PATH" ":" prefix
,(map (lambda (s) (string-append s "/lib/plugins")) ,(map (lambda (s) (string-append s "/lib/plugins"))
(list profile out kdevplatform kio))) (list profile out kdevplatform kio)))
...@@ -148,7 +151,7 @@ (define-public kdevelop-pg-qt ...@@ -148,7 +151,7 @@ (define-public kdevelop-pg-qt
(define-public kdevplatform (define-public kdevplatform
(package (package
(name "kdevplatform") (name "kdevplatform")
(version "5.1.0") (version "5.1.1")
(source (origin (source (origin
(method url-fetch) (method url-fetch)
(uri (string-append "mirror://kde/stable/kdevelop" (uri (string-append "mirror://kde/stable/kdevelop"
...@@ -156,7 +159,7 @@ (define-public kdevplatform ...@@ -156,7 +159,7 @@ (define-public kdevplatform
version ".tar.xz")) version ".tar.xz"))
(sha256 (sha256
(base32 (base32
"1nxf66vk6p7lmckdsha9fpq3zchwbg79qhy49f4hndlxgj03p7zh")))) "09p7lvniw55g6x8v8wl3azlps8c13yx03x1m9cd3qdxi282l8n9i"))))
(build-system cmake-build-system) (build-system cmake-build-system)
(native-inputs (native-inputs
`(("extra-cmake-modules" ,extra-cmake-modules) `(("extra-cmake-modules" ,extra-cmake-modules)
......
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