forked from mirrors/nixpkgs
update openmpi to 1.6.4
This commit is contained in:
parent
70ac286bf8
commit
84d5defb75
|
@ -1,11 +1,16 @@
|
|||
{stdenv, fetchurl, gfortran}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "openmpi-1.4.2";
|
||||
name = "openmpi-1.6.4";
|
||||
src = fetchurl {
|
||||
url = http://www.open-mpi.org/software/ompi/v1.4/downloads/openmpi-1.4.2.tar.bz2 ;
|
||||
sha1 = "3e85092433d0e399cc7a51c018f9d13562f78b80";
|
||||
url = http://www.open-mpi.org/software/ompi/v1.6/downloads/openmpi-1.6.4.tar.bz2 ;
|
||||
sha1 = "38095d3453519177272f488d5058a98f7ebdbf10";
|
||||
};
|
||||
buildInputs = [ gfortran ];
|
||||
meta = {
|
||||
homePage = http://www.open-mpi.org/;
|
||||
description = "Open source MPI-2 implementation";
|
||||
longDescription = "The Open MPI Project is an open source MPI-2 implementation that is developed and maintained by a consortium of academic, research, and industry partners. Open MPI is therefore able to combine the expertise, technologies, and resources from all across the High Performance Computing community in order to build the best MPI library available. Open MPI offers advantages for system and software vendors, application developers and computer science researchers.";
|
||||
};
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue