mpich2: 3.2 -> 3.2.1
This commit is contained in:
parent
0e371a60a5
commit
ff8b077071
|
@ -1,17 +1,33 @@
|
||||||
{ stdenv, fetchurl, python, perl, gfortran }:
|
{ stdenv, fetchurl, python, perl, gfortran
|
||||||
|
, slurm, openssh, hwloc
|
||||||
|
} :
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "mpich-${version}";
|
name = "mpich-${version}";
|
||||||
version = "3.2";
|
version = "3.2.1";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "http://www.mpich.org/static/downloads/3.2/mpich-3.2.tar.gz";
|
url = "http://www.mpich.org/static/downloads/${version}/mpich-${version}.tar.gz";
|
||||||
sha256 = "0bvvk4n9g4rmrncrgs9jnkcfh142i65wli5qp1akn9kwab1q80z6";
|
sha256 = "1w9h4g7d46d9l5jbcyfxpaqzpjrc5hyvr9d0ns7278psxpr3pdax";
|
||||||
};
|
};
|
||||||
|
|
||||||
configureFlags = "--enable-shared --enable-sharedlib";
|
configureFlags = [
|
||||||
|
"--enable-shared"
|
||||||
|
"--enable-sharedlib"
|
||||||
|
];
|
||||||
|
|
||||||
|
buildInputs = [ perl gfortran slurm openssh hwloc ];
|
||||||
|
|
||||||
|
doCheck = true;
|
||||||
|
|
||||||
|
preFixup = ''
|
||||||
|
# /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
|
||||||
|
'';
|
||||||
|
|
||||||
buildInputs = [ perl gfortran ];
|
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "Implementation of the Message Passing Interface (MPI) standard";
|
description = "Implementation of the Message Passing Interface (MPI) standard";
|
||||||
|
|
Loading…
Reference in New Issue