bscpkgs/bsc/tampi/default.nix

30 lines
564 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-03-03 19:06:25 +01:00
version = "1.0.2+6b11368e";
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-03-03 19:06:25 +01:00
rev = "6b11368ea522cd7095cfcf163831b8285faeee7e";
sha256 = "0519lb1rinhzkk0iy5cjjiqnk1bzhnnzhfigj9ac2c3wl0zcsrvy";
2020-06-08 18:01:33 +02:00
};
hardeningDisable = [ "all" ];
2020-06-08 18:01:33 +02:00
}