diff options
author | gemmaro <gemmaro.dev@gmail.com> | 2024-06-06 21:40:50 +0900 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2024-06-10 11:52:56 +0200 |
commit | dffb519c59777c2dd8ae9ed4125f305bfa49bec1 (patch) | |
tree | 1073efe92786abdfaa0002640546995e7f8940c2 /gnu/packages | |
parent | 11852360defd23fb4feaa7fc9bc8a0fae71217a0 (diff) | |
download | guix-dffb519c59777c2dd8ae9ed4125f305bfa49bec1.tar.gz guix-dffb519c59777c2dd8ae9ed4125f305bfa49bec1.zip |
gnu: solaar: Update to 1.1.13.
* gnu/packages/admin.scm (solaar): Update to 1.1.13.
[native-inputs]: Add python-pytest.
[propagated-inputs]: Add python-dbus-python and python-evdev.
Change-Id: I616c89ba50a0e8300c08856a96959eec7d274635
Signed-off-by: Andreas Enge <andreas@enge.fr>
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/admin.scm | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm index c730d43819..212c2b3715 100644 --- a/gnu/packages/admin.scm +++ b/gnu/packages/admin.scm @@ -65,6 +65,7 @@ ;;; Copyright © 2023 Nicolas Graves <ngraves@ngraves.fr> ;;; Copyright © 2023 Tomás Ortín Fernández <tomasortin@mailbox.org> ;;; Copyright © 2024 dan <i@dan.games> +;;; Copyright © 2024 gemmaro <gemmaro.dev@gmail.com> ;;; ;;; This file is part of GNU Guix. ;;; @@ -4719,7 +4720,7 @@ cache of unix and unix-like systems.") (define-public solaar (package (name "solaar") - (version "1.0.7") + (version "1.1.13") (source (origin (method git-fetch) (uri (git-reference @@ -4728,7 +4729,7 @@ cache of unix and unix-like systems.") (file-name (git-file-name name version)) (sha256 (base32 - "0k7mjdfvf28fay50b2hs2z4qk6s23h71wvl8777idlrz5i5f43j5")))) + "1fz3qgjx3ygr4clgh7iryxgvvjy510rgy8ixr2xld2wr0xa6p0mi")))) (build-system python-build-system) (arguments `(#:phases @@ -4736,9 +4737,12 @@ cache of unix and unix-like systems.") (add-before 'build 'setenv-PATH (lambda _ (setenv "PYTHONPATH" "lib")))))) + (native-inputs (list python-pytest)) (propagated-inputs (list python-pygobject python-pyudev + python-dbus-python + python-evdev ;; For GUI. python-pyyaml python-psutil |