bscpkgs/bsc/garlic/nbody/default.nix

48 lines
714 B
Nix
Raw Normal View History

2020-07-27 23:55:56 +08:00
{
stdenv
, cc
, cflags ? null
, gitBranch
2020-08-05 00:38:33 +08:00
, blocksize ? 2048
, particles ? 16384
, timesteps ? 10
2020-07-27 23:55:56 +08: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-28 01:13:11 +08:00
makeFlagsArray+=(CFLAGS="${cflags}")
2020-07-27 23:55:56 +08:00
'' else "");
makeFlags = [
"CC=${cc.cc.CC}"
2020-08-05 00:38:33 +08:00
"BS=${toString blocksize}"
2020-07-27 23:55:56 +08:00
];
dontPatchShebangs = true;
2020-07-27 23:55:56 +08:00
installPhase = ''
mkdir -p $out/bin
cp nbody $out/bin/
cat > $out/bin/run <<EOF
#!/bin/sh
2020-08-05 00:38:33 +08:00
exec $out/bin/nbody -p ${toString particles} -t ${toString timesteps}
2020-07-27 23:55:56 +08:00
EOF
chmod +x $out/bin/run
'';
}