diff mbox series

[bug#45981] gnu: solaar: Add missing dependency for GUI

Message ID ed789c87-749a-81ab-d284-d7ec15faafc5@lagunposprasihopre.org
State Accepted
Headers show
Series [bug#45981] gnu: solaar: Add missing dependency for GUI | expand

Checks

Context Check Description
cbaines/applying patch fail View Laminar job
cbaines/issue success View issue

Commit Message

la snesne Jan. 19, 2021, 2 p.m. UTC
---

  gnu/packages/admin.scm | 10 ++++++++--
  1 file changed, 8 insertions(+), 2 deletions(-)

      (synopsis "Linux devices manager for the Logitech Unifying Receiver")
      (description "This package provides tools to manage clients of the

Comments

Ludovic Courtès Feb. 24, 2021, 11:04 p.m. UTC | #1
Hi,

lasnesne <lasnesne@lagunposprasihopre.org> skribis:

> ---
>
>   gnu/packages/admin.scm | 10 ++++++++--
>   1 file changed, 8 insertions(+), 2 deletions(-)

I added a commit log and applied the patch.

Note that the patch got mangled on its way.  To be on the safe side,
please send it with ‘git send-email’ or as an attachment next time.

Thanks!

Ludo’.
diff mbox series

Patch

diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm
index b476a90de9..4a10954a94 100644
--- a/gnu/packages/admin.scm
+++ b/gnu/packages/admin.scm
@@ -35,6 +35,7 @@ 
  ;;; Copyright © 2020 Michael Rohleder <mike@rohleder.de>
  ;;; Copyright © 2020 Vincent Legoll <vincent.legoll@gmail.com>
  ;;; Copyright © 2020 Morgan Smith <Morgan.J.Smith@outlook.com>
+;;; Copyright © 2021 Hyunseok Kim <lasnesne@lagunposprasihopre.org>
  ;;;
  ;;; This file is part of GNU Guix.
  ;;;
@@ -3817,8 +3818,13 @@  support forum.  It runs with the @code{/exec} 
command in most IRC clients.")
               (setenv "PYTHONPATH" (string-append "lib:" (getenv 
"PYTHONPATH")))
               #t)))))
      (propagated-inputs
-     `(("python-pygobject" ,python-pygobject)
-       ("python-pyudev" ,python-pyudev)))
+     `(("python-pyudev" ,python-pyudev)
+       ;For GUI
+       ("python-pyyaml" ,python-pyyaml)
+       ("python-psutil" ,python-psutil)
+       ("python-xlib" ,python-xlib)
+       ("gtk+" ,gtk+)
+       ("python-pygobject" ,python-pygobject)))
      (home-page "https://smxi.org/docs/inxi.htm")