bscpkgs/pkgs/tampi/git.nix

27 lines
499 B
Nix
Raw Normal View History

2020-09-30 15:35:23 +08:00
{
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" ];
2020-09-30 15:35:23 +08:00
src = builtins.fetchGit {
2020-12-07 20:47:17 +08:00
url = "ssh://git@bscpm03.bsc.es/interoperability/tampi";
2020-09-30 15:35:23 +08:00
ref = "master";
};
hardeningDisable = [ "all" ];
2020-09-30 15:35:23 +08:00
}