bscpkgs/bsc/garlic/mpptest/default.nix

17 lines
262 B
Nix
Raw Normal View History

2020-07-24 17:33:05 +08:00
{
stdenv
, mpi
, fetchurl
}:
stdenv.mkDerivation {
name = "mpptest";
src = fetchurl {
2020-07-24 19:24:30 +08:00
url = "http://ftp.mcs.anl.gov/pub/mpi/tools/perftest.tar.gz";
2020-07-24 17:33:05 +08:00
sha256 = "11i22lq3pch3pvmhnbsgxzd8ap4yvpvlhy2f7k8x3krdwjhl0jvl";
};
buildInputs = [ mpi ];
}