[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#60480] [PATCH 2/2] gnu: plover: Add dbus to inputs
From: |
Parnikkapore |
Subject: |
[bug#60480] [PATCH 2/2] gnu: plover: Add dbus to inputs |
Date: |
Mon, 2 Jan 2023 08:08:04 +0700 |
* 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.
---
gnu/packages/stenography.scm | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/stenography.scm b/gnu/packages/stenography.scm
index 3249ee4c4f..e4617031fd 100644
--- a/gnu/packages/stenography.scm
+++ b/gnu/packages/stenography.scm
@@ -27,6 +27,7 @@ (define-module (gnu packages stenography)
#:use-module (guix packages)
#:use-module (gnu packages)
#:use-module (gnu packages bash)
+ #:use-module (gnu packages glib)
#:use-module (gnu packages qt)
#:use-module (gnu packages check)
#:use-module (gnu packages libusb)
@@ -87,10 +88,15 @@ (define-public plover
,(list (string-append (assoc-ref
inputs
"qtsvg")
-
"/lib/qt5/plugins/"))))))))))
+ "/lib/qt5/plugins/")))
+ `("LD_LIBRARY_PATH" prefix
+ (,(string-append (assoc-ref
+ inputs "dbus")
+
"/lib/"))))))))))
(native-inputs (list python-babel python-mock python-pytest
python-pytest-qt python-pytest-xvfb))
(inputs (list bash-minimal
+ dbus
python-appdirs
python-dbus
python-hidapi
--
2.38.1