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

commit 28753abc6794cc0a7dfd3a337e60a26dd330b8a6
Author: Maxime Devos <[email protected]>
AuthorDate: Fri Jul 2 12:07:23 2021 +0200

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

diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm
index f0b91e6b65..4cec08a2f5 100644
--- a/gnu/packages/perl.scm
+++ b/gnu/packages/perl.scm
@@ -4377,6 +4377,8 @@ errors are rethrown automatically.")
                             (,(getenv "PERL5LIB")
                              ,(string-append out "/lib/perl5/site_perl"))))
                         #t))))))
+    (inputs
+     `(("bash" ,bash-minimal))) ; for wrap-program
     (propagated-inputs
      (list perl-moo perl-strictures))
     (home-page "https://metacpan.org/release/Eval-WithLexicals";)
@@ -12156,6 +12158,8 @@ spirit of both the SDL and Perl.")
                           (wrap-program "bin/sgmlspl"
                             `("PERL5LIB" suffix (,site))))
                         #t))))))
+    (inputs
+     `(("bash" ,bash-minimal))) ; for wrap-program
     (native-inputs
      (list perl-module-build))
     (home-page "https://metacpan.org/release/RAAB/SGMLSpm-1.1";)

Reply via email to