hpcg: init at 3.1

This commit is contained in:
Markus Kowalewski 2020-04-27 16:41:40 +02:00
parent 6a627c416f
commit 9d5375f7c9
No known key found for this signature in database
GPG key ID: D865C8A91D7025EB
2 changed files with 37 additions and 0 deletions

View file

@ -0,0 +1,35 @@
{ stdenv, fetchurl, openmpi } :
stdenv.mkDerivation rec {
pname = "hpcg";
version = "3.1";
src = fetchurl {
url = "http://www.hpcg-benchmark.org/downloads/${pname}-${version}.tar.gz";
sha256 = "197lw2nwmzsmfsbvgvi8z7kj69n374kgfzzp8pkmk7mp2vkk991k";
};
dontConfigure = true;
enableParallelBuilding = true;
buildInputs = [ openmpi ];
makeFlags = [ "arch=Linux_MPI" ];
installPhase = ''
mkdir -p $out/bin $out/share/hpcg
cp bin/xhpcg $out/bin
cp bin/hpcg.dat $out/share/hpcg
'';
meta = with stdenv.lib; {
description = "HPC conjugate gradient benchmark";
homepage = "https://www.hpcg-benchmark.org";
platforms = platforms.linux;
license = licenses.bsd3;
maintainers = [ maintainers.markuskowa ];
};
}

View file

@ -19899,6 +19899,8 @@ in
howl = callPackage ../applications/editors/howl { };
hpcg = callPackage ../tools/misc/hpcg/default.nix { };
hpl = callPackage ../tools/misc/hpl { mpi = openmpi; };
hpmyroom = libsForQt5.callPackage ../applications/networking/hpmyroom { };