nixpkgs/pkgs/development/libraries/openmpi/default.nix
Markus Kowalewski e013f0d81a openmpi: 1.10.7->3.0.0, add markuskowa as maintainer
* add license
* update description
* add markuskowa as maintainer
2018-01-26 18:45:20 -08:00

57 lines
1.7 KiB
Nix

{ stdenv, fetchurl, gfortran, perl, libnl, rdma-core, zlib
# Enable the Sun Grid Engine bindings
, enableSGE ? false
# Pass PATH/LD_LIBRARY_PATH to point to current mpirun by default
, enablePrefix ? false
}:
with stdenv.lib;
let
majorVersion = "3.0";
minorVersion = "0";
in stdenv.mkDerivation rec {
name = "openmpi-${majorVersion}.${minorVersion}";
src = fetchurl {
url = "http://www.open-mpi.org/software/ompi/v${majorVersion}/downloads/${name}.tar.bz2";
sha256 = "1mw2d94k6mp4scg1wnkj50vdh734fy5m2ygyrj65s4mh3prbz6gn";
};
postPatch = ''
patchShebangs ./
'';
buildInputs = with stdenv; [ gfortran zlib ]
++ optional isLinux libnl
++ optional (isLinux || isFreeBSD) rdma-core;
nativeBuildInputs = [ perl ];
configureFlags = []
++ optional stdenv.isLinux "--with-libnl=${libnl.dev}"
++ optional enableSGE "--with-sge"
++ optional enablePrefix "--enable-mpirun-prefix-by-default"
;
enableParallelBuilding = true;
postInstall = ''
rm -f $out/lib/*.la
'';
doCheck = true;
meta = {
homepage = http://www.open-mpi.org/;
description = "Open source MPI-3 implementation";
longDescription = "The Open MPI Project is an open source MPI-3 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.";
maintainers = with maintainers; [ markuskowa ];
license = licenses.bsd3;
platforms = platforms.unix;
};
}