Remove old apps

This commit is contained in:
Rodrigo Arias 2020-10-09 16:15:11 +02:00
parent 332b738889
commit e6e42dcec9
2 changed files with 0 additions and 55 deletions

View File

@ -1,18 +0,0 @@
{
stdenv
, branch ? null
, srcPath ? null
}:
#assert if srcPath == null then branch != null else true;
stdenv.mkDerivation rec {
name = "dummy";
src = (if srcPath != null then srcPath else
builtins.fetchGit {
url = "ssh://git@bscpm02.bsc.es/rarias/dummy.git";
ref = "${branch}";
}
);
}

View File

@ -1,37 +0,0 @@
{
stdenv
, nanos6
, mpi
, tampi
, mcxx
, icc
}:
stdenv.mkDerivation rec {
name = "nbody";
src = builtins.fetchGit {
url = "ssh://git@bscpm02.bsc.es/benchmarks/ompss-2/nbody-conflict-kevin.git";
#rev = "a8372abf9fc7cbc2db0778de80512ad4af244c29";
ref = "master";
};
patchPhase = ''
sed -i 's/gcc/icc/g' Makefile
#export NIX_DEBUG=6
'';
buildInputs = [
nanos6
mpi
icc
tampi
mcxx
];
installPhase = ''
mkdir -p $out/bin
cp nbody_* $out/bin/
'';
}