mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
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
This commit is contained in:
parent
2df94f7599
commit
249dba8d9e
1 changed files with 15 additions and 13 deletions
|
@ -30,6 +30,7 @@ (define-module (gnu packages connman)
|
|||
#: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)
|
||||
|
@ -138,14 +139,15 @@ (define-public econnman
|
|||
(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
|
||||
|
|
Loading…
Reference in a new issue