27 lines
524 B
Nix
27 lines
524 B
Nix
|
{
|
||
|
stdenv
|
||
|
, fetchurl
|
||
|
, automake
|
||
|
, autoconf
|
||
|
, libtool
|
||
|
, gnumake
|
||
|
, boost
|
||
|
, mpi
|
||
|
, gcc
|
||
|
, autoreconfHook
|
||
|
}:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
pname = "tampi";
|
||
|
version = "${src.shortRev}";
|
||
|
enableParallelBuilding = true;
|
||
|
buildInputs = [ autoreconfHook automake autoconf libtool gnumake boost mpi gcc ];
|
||
|
dontDisableStatic = true;
|
||
|
configureFlags = [ "--disable-mpi-mt-check" "CXXFLAGS=-DOMPI_SKIP_MPICXX=1" ];
|
||
|
|
||
|
src = builtins.fetchGit {
|
||
|
url = "ssh://git@bscpm02.bsc.es/interoperability/tampi";
|
||
|
ref = "master";
|
||
|
};
|
||
|
}
|