nixpkgs/pkgs/development/libraries/mpich2/default.nix

31 lines
901 B
Nix
Raw Normal View History

{ stdenv, fetchurl, python, perl, gfortran }:
2017-09-10 11:43:32 +00:00
stdenv.mkDerivation rec {
name = "mpich-${version}";
version = "3.2";
src = fetchurl {
2017-09-10 11:43:32 +00:00
url = "http://www.mpich.org/static/downloads/3.2/mpich-3.2.tar.gz";
sha256 = "0bvvk4n9g4rmrncrgs9jnkcfh142i65wli5qp1akn9kwab1q80z6";
};
configureFlags = "--enable-shared --enable-sharedlib";
2017-09-10 11:43:32 +00:00
buildInputs = [ perl gfortran ];
meta = {
description = "Implementation of the Message Passing Interface (MPI) standard";
longDescription = ''
MPICH2 is a free high-performance and portable implementation of
the Message Passing Interface (MPI) standard, both version 1 and
version 2.
'';
homepage = http://www.mcs.anl.gov/mpi/mpich2/;
license = "free, see http://www.mcs.anl.gov/research/projects/mpich2/downloads/index.php?s=license";
2013-08-16 21:44:33 +00:00
maintainers = [ ];
platforms = stdenv.lib.platforms.unix;
};
}