apteryx pushed a commit to branch core-updates
in repository guix.

commit 41ba975414826afcb1da003a51045a493ef2b277
Author: Maxime Devos <[email protected]>
AuthorDate: Fri Jul 2 12:07:31 2021 +0200

    gnu: licensecheck: Add 'bash' input for 'wrap-program'.
    
    It is required for cross-compilation.
    
    * gnu/packages/license.scm
      (licensecheck)[inputs]: Add 'bash-minimal'.
    
    Signed-off-by: Maxim Cournoyer <[email protected]>
---
 gnu/packages/license.scm | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/gnu/packages/license.scm b/gnu/packages/license.scm
index ca8375d19d..6a43ada495 100644
--- a/gnu/packages/license.scm
+++ b/gnu/packages/license.scm
@@ -22,6 +22,7 @@
 
 (define-module (gnu packages license)
   #:use-module (gnu packages)
+  #:use-module (gnu packages bash)
   #:use-module (gnu packages check)
   #:use-module (gnu packages perl)
   #:use-module (gnu packages perl-check)
@@ -148,6 +149,8 @@ statements and serializes in normalized format.")
        ("perl-string-escape" ,perl-string-escape)
        ("perl-try-tiny" ,perl-try-tiny)
        ("perl-module-runtime" ,perl-module-runtime)))
+    (inputs
+     `(("bash" ,bash-minimal))) ; for wrap-program
     (arguments
      `(#:phases
        (modify-phases %standard-phases

Reply via email to