bscpkgs/bsc/garlic/nbody/default.nix

58 lines
941 B
Nix
Raw Normal View History

2020-07-27 17:55:56 +02:00
{
stdenv
, cc
, cflags ? null
, gitBranch
2020-08-04 18:38:33 +02:00
, blocksize ? 2048
, particles ? 16384
, timesteps ? 10
2020-07-27 17:55:56 +02:00
}:
stdenv.mkDerivation {
name = "nbody";
src = builtins.fetchGit {
url = "ssh://git@bscpm02.bsc.es/rarias/nbody.git";
ref = gitBranch;
};
buildInputs = [
cc
];
preBuild = (if cflags != null then ''
2020-07-27 19:13:11 +02:00
makeFlagsArray+=(CFLAGS="${cflags}")
2020-07-27 17:55:56 +02:00
'' else "");
makeFlags = [
"CC=${cc.cc.CC}"
2020-08-04 18:38:33 +02:00
"BS=${toString blocksize}"
2020-07-27 17:55:56 +02:00
];
dontPatchShebangs = true;
2020-07-27 17:55:56 +02:00
installPhase = ''
mkdir -p $out/bin
cp nbody $out/bin/
cat > $out/bin/run <<EOF
#!/bin/sh
# We need to enter the nix namespace first, in order to have /nix
# available, so we use this hack:
if [ ! -e /nix ]; then
echo "running nix-setup \$0"
exec nix-setup \$0
fi
ls -l /nix
pwd
2020-08-04 18:38:33 +02:00
exec $out/bin/nbody -p ${toString particles} -t ${toString timesteps}
2020-07-27 17:55:56 +02:00
EOF
chmod +x $out/bin/run
'';
}