guix-commits
[Top][All Lists]
Advanced

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

05/05: gnu: dbus: Add dbus to inputs.


From: guix-commits
Subject: 05/05: gnu: dbus: Add dbus to inputs.
Date: Tue, 3 Jan 2023 16:01:03 -0500 (EST)

ngz pushed a commit to branch master
in repository guix.

commit 5dcf82452ff2585e44758279cf0eecdef4e4f732
Author: Parnikkapore <poomklao@yahoo.com>
AuthorDate: Tue Jan 3 21:49:28 2023 +0100

    gnu: dbus: Add dbus to inputs.
    
    * gnu/packages/stenography.scm (plover): Add dbus to inputs and
    LD_LIBRARY_PATH.  Plover tries to load dbus during startup (visible
    with --log-level debug).  This will allow it to find it.
    [inputs]: Add dbus.
    
    Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
---
 gnu/packages/stenography.scm | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/stenography.scm b/gnu/packages/stenography.scm
index 56930dd37a..f95910dcff 100644
--- a/gnu/packages/stenography.scm
+++ b/gnu/packages/stenography.scm
@@ -28,12 +28,13 @@
   #:use-module (guix packages)
   #:use-module (gnu packages)
   #:use-module (gnu packages bash)
-  #:use-module (gnu packages qt)
   #:use-module (gnu packages check)
+  #:use-module (gnu packages glib)
   #:use-module (gnu packages libusb)
   #:use-module (gnu packages python)
   #:use-module (gnu packages python-check)
   #:use-module (gnu packages python-xyz)
+  #:use-module (gnu packages qt)
   #:use-module (gnu packages wxwidgets))
 
 (define-public python-plover-stroke
@@ -85,7 +86,9 @@
             (lambda* (#:key inputs #:allow-other-keys)
               (wrap-program (string-append #$output "/bin/plover")
                 `("QT_PLUGIN_PATH" prefix
-                  ,(list (search-input-directory inputs 
"/lib/qt5/plugins/")))))))))
+                  (,(search-input-directory inputs "/lib/qt5/plugins/")))
+                `("LD_LIBRARY_PATH" prefix
+                  (,(string-append #$(this-package-input "dbus") 
"/lib")))))))))
     (native-inputs
      (list python-babel
            python-mock
@@ -94,6 +97,7 @@
            python-pytest-xvfb))
     (inputs
      (list bash-minimal
+           dbus
            python-appdirs
            python-dbus
            python-hidapi



reply via email to

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