bscpkgs/garlic/mpptest/default.nix
Rodrigo Arias Mallo 126f05e92c Simplify paths
2020-09-21 14:34:08 +02:00

17 lines
262 B
Nix

{
stdenv
, mpi
, fetchurl
}:
stdenv.mkDerivation {
name = "mpptest";
src = fetchurl {
url = "http://ftp.mcs.anl.gov/pub/mpi/tools/perftest.tar.gz";
sha256 = "11i22lq3pch3pvmhnbsgxzd8ap4yvpvlhy2f7k8x3krdwjhl0jvl";
};
buildInputs = [ mpi ];
}