diff options
author | Maxime Devos <maximedevos@telenet.be> | 2021-07-02 12:07:44 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-08-31 10:42:42 +0200 |
commit | e93a4c5c197f34eb6c4403ea2a12c92fe008e53b (patch) | |
tree | d52f5b8572523536b02a69c469dec8411a1399f2 | |
parent | 9cd490205ae64dc380ab4134bc7eb137afca9ade (diff) | |
download | guix-e93a4c5c197f34eb6c4403ea2a12c92fe008e53b.tar.gz guix-e93a4c5c197f34eb6c4403ea2a12c92fe008e53b.zip |
gnu: julia: Add 'bash' input for 'wrap-program'.
It is required for cross-compilation.
* gnu/packages/julia.scm
(julia)[inputs]: Add 'bash-minimal'.
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
Modified-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
Change-Id: I279650a3de44f03b2a4a23012ce8125f85ebbe0b
-rw-r--r-- | gnu/packages/julia.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/julia.scm b/gnu/packages/julia.scm index 18f0d6c7d3..9668b3fd1e 100644 --- a/gnu/packages/julia.scm +++ b/gnu/packages/julia.scm @@ -35,6 +35,7 @@ #:use-module (gnu packages) #:use-module (gnu packages algebra) #:use-module (gnu packages base) + #:use-module (gnu packages bash) #:use-module (gnu packages compression) #:use-module (gnu packages curl) #:use-module (gnu packages elf) @@ -501,7 +502,8 @@ using Dates: @dateformat_str, Date, DateTime, DateFormat, Time")) (assoc-ref %build-inputs "libuv") "/include")))) (inputs - `(("coreutils" ,coreutils) ; for bindings to "mkdir" and the like + `(("bash-minimal" ,bash-minimal) + ("coreutils" ,coreutils) ; for bindings to "mkdir" and the like ("curl" ,curl-ssh) ("gfortran" ,gfortran) ;; required for libgcc_s.so |