guix-commits
[Top][All Lists]
Advanced

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

01/31: gnu: qtbase: Add native search paths.


From: David Craven
Subject: 01/31: gnu: qtbase: Add native search paths.
Date: Tue, 30 Aug 2016 20:39:56 +0000 (UTC)

dvc pushed a commit to branch master
in repository guix.

commit ed02e1fec882bb7fb0ce72423c42b7bd245b5ec1
Author: David Craven <address@hidden>
Date:   Thu Aug 25 17:20:22 2016 +0200

    gnu: qtbase: Add native search paths.
    
    * gnu/packages/qt.scm (qtbase)[native-search-paths]: Add
      QML2_IMPORT_PATH, QT_PLUGIN_PATH, XDG_DATA_DIRS and XDG_CONFIG_DIRS.
---
 gnu/packages/qt.scm |   14 +++++++++++++-
 1 file changed, 13 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/qt.scm b/gnu/packages/qt.scm
index a7eee7c..5a93ea2 100644
--- a/gnu/packages/qt.scm
+++ b/gnu/packages/qt.scm
@@ -474,7 +474,19 @@ developers using C++ or QML, a CSS & JavaScript like 
language.")
     (native-search-paths
      (list (search-path-specification
             (variable "QMAKEPATH")
-            (files '("")))))
+            (files '("")))
+           (search-path-specification
+            (variable "QML2_IMPORT_PATH")
+            (files '("qml")))
+           (search-path-specification
+            (variable "QT_PLUGIN_PATH")
+            (files '("plugins")))
+           (search-path-specification
+            (variable "XDG_DATA_DIRS")
+            (files '("share")))
+           (search-path-specification
+            (variable "XDG_CONFIG_DIRS")
+            (files '("etc/xdg")))))
     (home-page "https://www.qt.io/";)
     (synopsis "Cross-platform GUI library")
     (description "Qt is a cross-platform application and UI framework for



reply via email to

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