diff options
author | Romain GARBAGE <romain.garbage@inria.fr> | 2024-08-05 10:33:25 +0200 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2024-08-14 10:57:51 +0100 |
commit | 063b02a290c232945f062904697b94b26a950f3c (patch) | |
tree | 26b571fec6a6e4ed07adff1f1a314c3842488a58 /gnu/packages | |
parent | e320ed57204363625dc1eb1e393f8535020087e0 (diff) | |
download | guix-063b02a290c232945f062904697b94b26a950f3c.tar.gz guix-063b02a290c232945f062904697b94b26a950f3c.zip |
gnu: mpich: Update to 4.2.2.
* gnu/packages/mpi.scm (mpich): Update to 4.2.2.
[native-inputs]: Add python-minimal.
Change-Id: I9f3e42cb58c399a89835ac38dcfdd9dd11efe210
Signed-off-by: Christopher Baines <mail@cbaines.net>
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/mpi.scm | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gnu/packages/mpi.scm b/gnu/packages/mpi.scm index 4c18da30ef..97471d56e9 100644 --- a/gnu/packages/mpi.scm +++ b/gnu/packages/mpi.scm @@ -43,6 +43,7 @@ #:use-module (gnu packages libevent) #:use-module (gnu packages linux) #:use-module (gnu packages pciutils) + #:use-module (gnu packages python) #:use-module (gnu packages xorg) #:use-module (gnu packages gtk) #:use-module (gnu packages xml) @@ -450,14 +451,14 @@ arrays) that expose a buffer interface.") (define-public mpich (package (name "mpich") - (version "3.3.2") + (version "4.2.2") (source (origin (method url-fetch) (uri (string-append "http://www.mpich.org/static/downloads/" version "/mpich-" version ".tar.gz")) (sha256 (base32 - "1farz5zfx4cd0c3a0wb9pgfypzw0xxql1j1294z1sxslga1ziyjb")))) + "0h8xg1wi2d88hnfmj3xydf1hj78r7fh05jljhk5jgxmbmsrmngw8")))) (build-system gnu-build-system) (inputs `(,zlib @@ -468,7 +469,7 @@ arrays) that expose a buffer interface.") (list ucx) '()))) (native-inputs - (list perl which gfortran)) + (list perl which gfortran python-minimal)) (outputs '("out" "debug")) (arguments `(#:configure-flags |