~ruther/guix-local

249dba8d9e3638be4d9dc9728ea026e3ff5d4ea3 — Maxime Devos 4 years ago 2df94f7
gnu: econnman: Add 'bash' input for 'wrap-program'.

It is required for cross-compilation.

* gnu/packages/connman.scm (econnman)[inputs]: Add 'bash-minimal'.  Remove
input labels.

Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
Modified-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
Change-Id: I8cc36e919c1f7f9a57e1762b0ba69c79361c0f40
1 files changed, 15 insertions(+), 13 deletions(-)

M gnu/packages/connman.scm
M gnu/packages/connman.scm => gnu/packages/connman.scm +15 -13
@@ 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