bscpkgs/bsc/tampi/git.nix
Rodrigo Arias Mallo d4ea0fe607 tampi: remove hacks from configure flags
The verbose make flag is added to ensure the log contains the complete
compilation line.
2020-10-05 10:45:11 +02:00

26 lines
467 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;
makeFlags = [ "V=1" ];
src = builtins.fetchGit {
url = "ssh://git@bscpm02.bsc.es/interoperability/tampi";
ref = "master";
};
}