mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: python-git-review: Add 'bash' input for 'wrap-program'.
It is required for cross-compilation. * gnu/packages/openstack.scm (python-git-review)[inputs]: Add 'bash-minimal'. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> Change-Id: Ib17da31cc7f25d91e12e3cda95cf07a01f6f21d7
This commit is contained in:
parent
0d956d9a4e
commit
ac54023529
1 changed files with 5 additions and 8 deletions
|
@ -26,6 +26,7 @@
|
|||
|
||||
(define-module (gnu packages openstack)
|
||||
#:use-module (gnu packages)
|
||||
#:use-module (gnu packages bash)
|
||||
#:use-module (gnu packages check)
|
||||
#:use-module (gnu packages databases)
|
||||
#:use-module (gnu packages gnupg)
|
||||
|
@ -977,14 +978,10 @@ (define-public python-git-review
|
|||
`("PATH" ":" prefix
|
||||
,(map (lambda (dir)
|
||||
(string-append dir "/bin"))
|
||||
(list git openssh)))))
|
||||
#t)))))
|
||||
(native-inputs
|
||||
(list python-pbr))
|
||||
(propagated-inputs
|
||||
(list python-requests))
|
||||
(inputs
|
||||
(list git openssh))
|
||||
(list git openssh))))))))))
|
||||
(native-inputs (list python-pbr))
|
||||
(propagated-inputs (list python-requests))
|
||||
(inputs (list bash-minimal git openssh))
|
||||
(home-page "https://docs.openstack.org/infra/git-review/")
|
||||
(synopsis "Command-line tool for Gerrit")
|
||||
(description
|
||||
|
|
Loading…
Reference in a new issue