guix-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[bug#49327] [PATCH core-updates 079/128] gnu: phabricator: Add 'bash' in


From: Maxime Devos
Subject: [bug#49327] [PATCH core-updates 079/128] gnu: phabricator: Add 'bash' input for 'wrap-program'.
Date: Fri, 2 Jul 2021 12:07:25 +0200

It is required for cross-compilation.

* gnu/packages/phabricator.scm
  (arcanist)[inputs]: Add 'bash-minimal'.
---
 gnu/packages/phabricator.scm | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/phabricator.scm b/gnu/packages/phabricator.scm
index af95cd93d2..7343d5103c 100644
--- a/gnu/packages/phabricator.scm
+++ b/gnu/packages/phabricator.scm
@@ -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)
@@ -70,7 +71,8 @@
                          (find-files %output ".*\\.t?gz$"))
                #t)))))
       (inputs
-       `(("php" ,php)
+       `(("bash" ,bash-minimal) ; for wrap-program
+         ("php" ,php)
          ("git" ,git)
          ("mercurial" ,mercurial)
          ("subversion" ,subversion)))
-- 
2.32.0






reply via email to

[Prev in Thread] Current Thread [Next in Thread]