diff options
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/connman.scm | 28 |
1 files changed, 15 insertions, 13 deletions
diff --git a/gnu/packages/connman.scm b/gnu/packages/connman.scm index 2696e4c751..a13b6d199e 100644 --- a/gnu/packages/connman.scm +++ b/gnu/packages/connman.scm @@ -30,6 +30,7 @@ #:use-module (gnu packages) #:use-module (gnu packages admin) #:use-module (gnu packages compression) + #:use-module (gnu packages bash) #:use-module (gnu packages enlightenment) #:use-module (gnu packages glib) #:use-module (gnu packages linux) @@ -118,13 +119,13 @@ sharing) to clients via USB, ethernet, WiFi, cellular and Bluetooth.") (name "econnman") (version "1.1") (source - (origin - (method url-fetch) - (uri (string-append "https://download.enlightenment.org/rel/apps/" - "econnman/econnman-" version ".tar.gz")) - (sha256 - (base32 - "057pwwavlvrrq26bncqnfrf449zzaim0zq717xv86av4n940gwv0")))) + (origin + (method url-fetch) + (uri (string-append "https://download.enlightenment.org/rel/apps/" + "econnman/econnman-" version ".tar.gz")) + (sha256 + (base32 + "057pwwavlvrrq26bncqnfrf449zzaim0zq717xv86av4n940gwv0")))) (build-system gnu-build-system) (arguments `(#:configure-flags '("--localstatedir=/var") @@ -138,14 +139,15 @@ sharing) to clients via USB, ethernet, WiFi, cellular and Bluetooth.") (let* ((out (assoc-ref outputs "out")) (bin (string-append out "/bin/econnman-bin"))) (wrap-program bin - `("GUIX_PYTHONPATH" ":" prefix (,(getenv "GUIX_PYTHONPATH")))) - #t)))))) + `("GUIX_PYTHONPATH" ":" prefix + (,(getenv "GUIX_PYTHONPATH")))))))))) (native-inputs (list pkg-config)) (inputs - `(("efl" ,efl) - ("python" ,python-wrapper) - ("python-dbus" ,python-dbus) - ("python-efl" ,python-efl))) + (list bash-minimal ;for wrap-program + efl + python-wrapper + python-dbus + python-efl)) (home-page "https://www.enlightenment.org") (synopsis "Connman User Interface written using the EFL") (description |