Archived
1
0
forked from rarias/bscpkgs

bsc: add GPI-2 and TAGASPI

This commit is contained in:
2021-07-13 12:37:04 +02:00
parent d2834624c2
commit a5af7890b8
3 changed files with 94 additions and 0 deletions

38
bsc/gpi-2/default.nix Normal file
View File

@@ -0,0 +1,38 @@
{
stdenv
, slurm
, rdma-core
, autoconf
, automake
, libtool
, mpi
, rsync
, gfortran
}:
stdenv.mkDerivation rec {
pname = "GPI-2";
version = src.shortRev;
src = builtins.fetchGit {
url = "ssh://git@bscpm03.bsc.es/interoperability/GPI-2";
ref = "lowlevel";
};
preConfigure = ''
patchShebangs autogen.sh
./autogen.sh
'';
configureFlags = [
"--with-infiniband=${rdma-core}"
"--with-mpi=${mpi}"
"--with-slurm"
"CFLAGS=-fPIC"
"CXXFLAGS=-fPIC"
];
buildInputs = [ slurm mpi rdma-core autoconf automake libtool rsync gfortran ];
hardeningDisable = [ "all" ];
}