2008-02-21 17:17:43 +01:00
|
|
|
{stdenv, fetchurl, python}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "mpich2-1.0.6p1";
|
2009-03-03 14:27:40 +01:00
|
|
|
|
2008-02-21 17:17:43 +01:00
|
|
|
src = fetchurl {
|
2009-03-03 14:27:40 +01:00
|
|
|
url = "http://www.mcs.anl.gov/research/projects/mpich2/downloads/tarballs/${name}.tar.gz";
|
2008-02-21 17:17:43 +01:00
|
|
|
sha256 = "1k0za8951j5fn89ww6bsy9b4yi989zz7bnd8a6acfr8r0yb8z01q";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ python ];
|
|
|
|
|
|
|
|
meta = {
|
2009-03-03 14:27:40 +01:00
|
|
|
longDescription = ''
|
|
|
|
MPICH2 is a free high-performance and portable implementation of
|
|
|
|
the Message Passing Interface (MPI) standard, both version 1 and
|
|
|
|
version 2.
|
|
|
|
'';
|
2008-02-21 17:17:43 +01:00
|
|
|
homepage = http://www.mcs.anl.gov/mpi/mpich2/;
|
|
|
|
license = "free, see http://www.mcs.anl.gov/research/projects/mpich2/downloads/index.php?s=license";
|
|
|
|
};
|
|
|
|
}
|