Merge branch 'master' of bscpm02.bsc.es:rarias/bsc-nixpkgs
This commit is contained in:
16
bsc/mpptest/default.nix
Normal file
16
bsc/mpptest/default.nix
Normal file
@@ -0,0 +1,16 @@
|
||||
{
|
||||
stdenv
|
||||
, mpi
|
||||
, fetchurl
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "mpptest";
|
||||
|
||||
src = fetchurl {
|
||||
url = "ftp://ftp.mcs.anl.gov/pub/mpi/tools/perftest.tar.gz";
|
||||
sha256 = "11i22lq3pch3pvmhnbsgxzd8ap4yvpvlhy2f7k8x3krdwjhl0jvl";
|
||||
};
|
||||
|
||||
buildInputs = [ mpi ];
|
||||
}
|
||||
Reference in New Issue
Block a user