guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/01: gnu: kdevelop: Do not hardcode user profile locations in wrapper.


From: Thomas Danckaert
Subject: 01/01: gnu: kdevelop: Do not hardcode user profile locations in wrapper.
Date: Sun, 8 Oct 2017 13:08:18 -0400 (EDT)

thomasd pushed a commit to branch master
in repository guix.

commit 3ceb70e1e68f8e57fd3e9368cd3e0650ab5e4987
Author: Thomas Danckaert <address@hidden>
Date:   Sun Oct 8 19:01:59 2017 +0200

    gnu: kdevelop: Do not hardcode user profile locations in wrapper.
    
    * gnu/packages/kde.scm (kdevelop): [arguments]: Do not add
      ${HOME}/.guix-profile/{share,lib/plugins} to XDG_DATA_DIRS and
      QT_PLUGIN_PATH when wrapping the executable.
---
 gnu/packages/kde.scm | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/kde.scm b/gnu/packages/kde.scm
index 91a7b62..57d4492 100644
--- a/gnu/packages/kde.scm
+++ b/gnu/packages/kde.scm
@@ -102,17 +102,16 @@
                     (qtquickcontrols (assoc-ref inputs "qtquickcontrols"))
                     (qtbase (assoc-ref inputs "qtbase"))
                     (qtdeclarative (assoc-ref inputs "qtdeclarative"))
-                    (profile "$HOME/.guix-profile")
                     (qml "/qml"))
                (wrap-program (string-append out "/bin/kdevelop")
                  `("XDG_DATA_DIRS" ":" prefix
                    ,(map (lambda (s) (string-append s "/share"))
-                         (list profile out kdevplatform kcmutils)))
+                         (list out kdevplatform kcmutils)))
                  `("QT_QPA_PLATFORM_PLUGIN_PATH" ":" =
                    (,(string-append qtbase "/plugins/platforms")))
                  `("QT_PLUGIN_PATH" ":" prefix
                    ,(map (lambda (s) (string-append s "/lib/plugins"))
-                         (list profile out kdevplatform kio)))
+                         (list out kdevplatform kio)))
                  `("QML2_IMPORT_PATH" ":" prefix
                    (,(string-append qtquickcontrols qml)
                     ,(string-append qtdeclarative qml))))))))))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]