bscpkgs/bsc/garlic/nbody/default.nix

39 lines
580 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
2020-07-27 17:55:56 +02:00
}:
2020-08-12 14:00:04 +02:00
stdenv.mkDerivation rec {
2020-07-27 17:55:56 +02:00
name = "nbody";
src = builtins.fetchGit {
url = "ssh://git@bscpm02.bsc.es/rarias/nbody.git";
2020-08-12 14:00:04 +02:00
ref = "${gitBranch}";
2020-07-27 17:55:56 +02:00
};
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
2020-08-12 14:00:04 +02:00
cp nbody* $out/bin/${name}
ln -s $out/bin/${name} $out/bin/run
2020-07-27 17:55:56 +02:00
'';
}