Simplify paths

This commit is contained in:
2020-09-21 14:34:08 +02:00
parent dba1cc22bc
commit 126f05e92c
26 changed files with 392 additions and 95 deletions

View File

@@ -0,0 +1,16 @@
{
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 ];
}