mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
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 <maxim.cournoyer@gmail.com>
This commit is contained in:
parent
1d66e38472
commit
95a6badb9d
1 changed files with 3 additions and 0 deletions
|
@ -23,6 +23,7 @@
|
||||||
|
|
||||||
(define-module (gnu packages license)
|
(define-module (gnu packages license)
|
||||||
#:use-module (gnu packages)
|
#:use-module (gnu packages)
|
||||||
|
#:use-module (gnu packages bash)
|
||||||
#:use-module (gnu packages check)
|
#:use-module (gnu packages check)
|
||||||
#:use-module (gnu packages perl)
|
#:use-module (gnu packages perl)
|
||||||
#:use-module (gnu packages perl-check)
|
#:use-module (gnu packages perl-check)
|
||||||
|
@ -150,6 +151,8 @@ (define-public licensecheck
|
||||||
("perl-string-escape" ,perl-string-escape)
|
("perl-string-escape" ,perl-string-escape)
|
||||||
("perl-try-tiny" ,perl-try-tiny)
|
("perl-try-tiny" ,perl-try-tiny)
|
||||||
("perl-module-runtime" ,perl-module-runtime)))
|
("perl-module-runtime" ,perl-module-runtime)))
|
||||||
|
(inputs
|
||||||
|
`(("bash" ,bash-minimal))) ; for wrap-program
|
||||||
(arguments
|
(arguments
|
||||||
`(#:phases
|
`(#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
|
|
Loading…
Reference in a new issue