nixpkgs/pkgs/development/libraries/globalarrays/default.nix

41 lines
1 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchpatch, fetchFromGitHub, autoreconfHook
, blas, gfortran, openssh, mpi
2018-08-01 22:16:11 +00:00
} :
let
2020-11-11 07:29:04 +00:00
version = "5.8";
2018-08-01 22:16:11 +00:00
in stdenv.mkDerivation {
2019-08-13 21:52:01 +00:00
pname = "globalarrays";
inherit version;
2018-08-01 22:16:11 +00:00
src = fetchFromGitHub {
owner = "GlobalArrays";
repo = "ga";
rev = "v${version}";
2020-11-11 07:29:04 +00:00
sha256 = "0bky91ncz6vy0011ps9prsnq9f4a5s5xwr23kkmi39xzg0417mnd";
2018-08-01 22:16:11 +00:00
};
2019-02-19 23:02:04 +00:00
nativeBuildInputs = [ autoreconfHook ];
buildInputs = [ mpi blas gfortran openssh ];
2018-08-01 22:16:11 +00:00
preConfigure = ''
configureFlagsArray+=( "--enable-i8" \
"--with-mpi" \
"--with-mpi3" \
"--enable-eispack" \
"--enable-underscoring" \
"--with-blas8=${blas}/lib -lblas" )
2018-08-01 22:16:11 +00:00
'';
enableParallelBuilding = true;
meta = with lib; {
2018-08-01 22:16:11 +00:00
description = "Global Arrays Programming Models";
homepage = "http://hpc.pnl.gov/globalarrays/";
2018-08-01 22:16:11 +00:00
maintainers = [ maintainers.markuskowa ];
license = licenses.bsd3;
platforms = platforms.linux;
};
}