globalarrays: init at 5.7
This commit is contained in:
parent
03e47c388a
commit
b908b7d68d
42
pkgs/development/libraries/globalarrays/default.nix
Normal file
42
pkgs/development/libraries/globalarrays/default.nix
Normal file
@ -0,0 +1,42 @@
|
||||
{ stdenv, pkgs, fetchFromGitHub, automake, autoconf, libtool
|
||||
, openblas, gfortran, openssh, openmpi
|
||||
} :
|
||||
|
||||
let
|
||||
version = "5.7";
|
||||
|
||||
in stdenv.mkDerivation {
|
||||
name = "globalarrays-${version}";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "GlobalArrays";
|
||||
repo = "ga";
|
||||
rev = "v${version}";
|
||||
sha256 = "07i2idaas7pq3in5mdqq5ndvxln5q87nyfgk3vzw85r72c4fq5jh";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ automake autoconf libtool ];
|
||||
buildInputs = [ openmpi openblas gfortran openssh ];
|
||||
|
||||
preConfigure = ''
|
||||
autoreconf -ivf
|
||||
configureFlagsArray+=( "--enable-i8" \
|
||||
"--with-mpi" \
|
||||
"--with-mpi3" \
|
||||
"--enable-eispack" \
|
||||
"--enable-underscoring" \
|
||||
"--with-blas8=${openblas}/lib -lopenblas" )
|
||||
'';
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Global Arrays Programming Models";
|
||||
homepage = http://hpc.pnl.gov/globalarrays/;
|
||||
maintainers = [ maintainers.markuskowa ];
|
||||
license = licenses.bsd3;
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
||||
|
||||
|
@ -1314,6 +1314,8 @@ with pkgs;
|
||||
|
||||
glide = callPackage ../development/tools/glide { };
|
||||
|
||||
globalarrays = callPackage ../development/libraries/globalarrays { };
|
||||
|
||||
glock = callPackage ../development/tools/glock { };
|
||||
|
||||
glslviewer = callPackage ../development/tools/glslviewer {
|
||||
|
Loading…
Reference in New Issue
Block a user