bscpkgs/pkgs/tampi/default.nix

31 lines
549 B
Nix
Raw Normal View History

2020-06-08 18:01:33 +02:00
{
stdenv
, fetchFromGitHub
2020-06-08 18:01:33 +02:00
, automake
, autoconf
, libtool
, gnumake
, boost
, mpi
2020-06-26 10:16:41 +02:00
, gcc
, autoreconfHook
}:
2020-06-08 18:01:33 +02:00
2020-06-15 12:45:16 +02:00
stdenv.mkDerivation rec {
version = "3.0";
pname = "tampi";
2020-06-15 12:45:16 +02:00
enableParallelBuilding = true;
separateDebugInfo = true;
2020-06-26 10:16:41 +02:00
buildInputs = [ autoreconfHook automake autoconf libtool gnumake boost mpi gcc ];
2020-06-15 12:45:16 +02:00
dontDisableStatic = true;
src = fetchFromGitHub {
owner = "bsc-pm";
repo = "tampi";
2021-06-30 16:34:39 +02:00
rev = "v${version}";
hash = "sha256-qdWBxPsXKM428F2ojt2B6/0ZsQyGzEiojNaqbhDmrks=";
2020-06-08 18:01:33 +02:00
};
hardeningDisable = [ "all" ];
2020-06-08 18:01:33 +02:00
}