2018-07-21 01:44:44 +01:00
|
|
|
{ stdenv, fetchurl, perl, gfortran
|
2018-08-06 13:44:46 +01:00
|
|
|
, openssh, hwloc
|
2018-02-02 18:35:42 +00:00
|
|
|
} :
|
2010-01-27 22:13:19 +00:00
|
|
|
|
2017-09-10 12:43:32 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "mpich";
|
2019-11-17 16:24:06 +00:00
|
|
|
version = "3.3.2";
|
2008-02-21 16:17:43 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-06-28 19:43:35 +01:00
|
|
|
url = "https://www.mpich.org/static/downloads/${version}/mpich-${version}.tar.gz";
|
2019-11-17 16:24:06 +00:00
|
|
|
sha256 = "1farz5zfx4cd0c3a0wb9pgfypzw0xxql1j1294z1sxslga1ziyjb";
|
2008-02-21 16:17:43 +00:00
|
|
|
};
|
|
|
|
|
2018-02-02 18:35:42 +00:00
|
|
|
configureFlags = [
|
|
|
|
"--enable-shared"
|
|
|
|
"--enable-sharedlib"
|
|
|
|
];
|
|
|
|
|
2018-08-06 13:44:46 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
buildInputs = [ perl gfortran openssh hwloc ];
|
2018-02-02 18:35:42 +00:00
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
|
|
|
|
preFixup = ''
|
2018-12-19 00:53:18 +00:00
|
|
|
# Ensure the default compilers are the ones mpich was built with
|
|
|
|
sed -i 's:CC="gcc":CC=${stdenv.cc}/bin/gcc:' $out/bin/mpicc
|
|
|
|
sed -i 's:CXX="g++":CXX=${stdenv.cc}/bin/g++:' $out/bin/mpicxx
|
|
|
|
sed -i 's:FC="gfortran":FC=${gfortran}/bin/gfortran:' $out/bin/mpifort
|
|
|
|
''
|
|
|
|
+ stdenv.lib.optionalString (!stdenv.isDarwin) ''
|
2018-02-02 18:35:42 +00:00
|
|
|
# /tmp/nix-build... ends up in the RPATH, fix it manually
|
|
|
|
for entry in $out/bin/mpichversion $out/bin/mpivars; do
|
|
|
|
echo "fix rpath: $entry"
|
|
|
|
patchelf --set-rpath "$out/lib" $entry
|
|
|
|
done
|
2018-12-19 00:53:18 +00:00
|
|
|
'';
|
2008-02-21 16:17:43 +00:00
|
|
|
|
2018-02-02 20:08:47 +00:00
|
|
|
meta = with stdenv.lib; {
|
2014-08-24 15:21:08 +01:00
|
|
|
description = "Implementation of the Message Passing Interface (MPI) standard";
|
2010-01-27 22:13:19 +00:00
|
|
|
|
2009-03-03 13:27:40 +00:00
|
|
|
longDescription = ''
|
|
|
|
MPICH2 is a free high-performance and portable implementation of
|
|
|
|
the Message Passing Interface (MPI) standard, both version 1 and
|
|
|
|
version 2.
|
|
|
|
'';
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://www.mcs.anl.gov/mpi/mpich2/";
|
2018-02-02 20:08:47 +00:00
|
|
|
license = {
|
2020-04-01 02:11:51 +01:00
|
|
|
url = "http://git.mpich.org/mpich.git/blob/a385d6d0d55e83c3709ae851967ce613e892cd21:/COPYRIGHT";
|
2018-02-02 20:08:47 +00:00
|
|
|
fullName = "MPICH license (permissive)";
|
|
|
|
};
|
|
|
|
maintainers = [ maintainers.markuskowa ];
|
2018-12-19 00:53:18 +00:00
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
2008-02-21 16:17:43 +00:00
|
|
|
};
|
|
|
|
}
|