mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: phabricator: Add 'bash' input for 'wrap-program'.
It is required for cross-compilation. * gnu/packages/phabricator.scm (arcanist)[inputs]: Add 'bash-minimal'. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
This commit is contained in:
parent
112def11ad
commit
65db0c0603
1 changed files with 2 additions and 1 deletions
|
@ -18,6 +18,7 @@
|
|||
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
(define-module (gnu packages phabricator)
|
||||
#:use-module (gnu packages bash)
|
||||
#:use-module (gnu packages php)
|
||||
#:use-module (gnu packages version-control)
|
||||
#:use-module (guix build-system gnu)
|
||||
|
@ -64,7 +65,7 @@ (define-public arcanist
|
|||
(string-append (assoc-ref %build-inputs i) "/bin"))
|
||||
'("php" "git" "mercurial" "subversion")))))))))))
|
||||
(inputs
|
||||
(list php git mercurial subversion))
|
||||
(list bash-minimal php git mercurial subversion))
|
||||
(home-page "https://github.com/phacility/arcanist")
|
||||
(synopsis "Command-line interface for Phabricator")
|
||||
(description
|
||||
|
|
Loading…
Reference in a new issue