bscpkgs/bsc/tampi/default.nix

30 lines
524 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 {
2021-06-30 16:34:39 +02:00
version = "1.1";
pname = "tampi";
2020-06-15 12:45:16 +02:00
enableParallelBuilding = 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}";
sha256 = "0m369l3kprginqkkdjf5znlbrwvib2vjlhdy63nbvlw6v5ys7sci";
2020-06-08 18:01:33 +02:00
};
hardeningDisable = [ "all" ];
2020-06-08 18:01:33 +02:00
}