bscpkgs/pkgs/tampi/git.nix
2023-10-02 10:57:53 +02:00

27 lines
499 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@bscpm03.bsc.es/interoperability/tampi";
ref = "master";
};
hardeningDisable = [ "all" ];
}