bscpkgs/bsc/tampi/default.nix

28 lines
531 B
Nix
Raw Normal View History

2020-06-09 00:01:33 +08:00
{
stdenv
, fetchFromGitHub
2020-06-09 00:01:33 +08:00
, automake
, autoconf
, libtool
, gnumake
, boost
, mpi
2020-06-26 16:16:41 +08:00
, gcc
, autoreconfHook
}:
2020-06-09 00:01:33 +08:00
2020-06-15 18:45:16 +08:00
stdenv.mkDerivation rec {
2021-03-04 02:06:25 +08:00
version = "1.0.2+6b11368e";
pname = "tampi";
2020-06-15 18:45:16 +08:00
enableParallelBuilding = true;
2020-06-26 16:16:41 +08:00
buildInputs = [ autoreconfHook automake autoconf libtool gnumake boost mpi gcc ];
2020-06-15 18:45:16 +08:00
dontDisableStatic = true;
src = fetchFromGitHub {
owner = "bsc-pm";
repo = "tampi";
2021-03-04 02:06:25 +08:00
rev = "6b11368ea522cd7095cfcf163831b8285faeee7e";
sha256 = "0519lb1rinhzkk0iy5cjjiqnk1bzhnnzhfigj9ac2c3wl0zcsrvy";
2020-06-09 00:01:33 +08:00
};
}