diff options
author | Maxime Devos <maximedevos@telenet.be> | 2021-07-02 12:07:30 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-08-31 10:42:41 +0200 |
commit | 1d66e384724db1abddc4c32d95d047aaa4b57887 (patch) | |
tree | d89dc280af23121c2ea2b7cce6a193f37c1b4d76 /gnu | |
parent | e441005546d16df13ed9d4a0239a403a925a66fb (diff) | |
download | guix-1d66e384724db1abddc4c32d95d047aaa4b57887.tar guix-1d66e384724db1abddc4c32d95d047aaa4b57887.tar.gz |
gnu: linux: Add 'bash' input for 'wrap-program'.
It is required for cross-compilation.
* gnu/packages/linux.scm
(kbd)[inputs]: Add 'bash-minimal'.
(singularity)[inputs]: Likewise.
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
Modified-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
Change-Id: I5586d61c683f8f1f48f9d28590f088023572b2b8
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/linux.scm | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 9478cb89b5..df8cc1943d 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -4236,7 +4236,8 @@ NUMA performance on your system.") (native-inputs (list autoconf pkg-config)) (inputs - `(("bzip2" ,bzip2) + `(("bash" ,bash-minimal) ; for wrap-program + ("bzip2" ,bzip2) ("gzip" ,gzip) ("pam" ,linux-pam) ("xz" ,xz) @@ -5383,7 +5384,8 @@ thanks to the use of namespaces.") (string-append (which "env") " " #$output "/bin/singularity"))))))))) (inputs - (list coreutils + (list bash-minimal + coreutils libarchive python-wrapper squashfs-tools |