bscpkgs/bsc/nanos6/git.nix

58 lines
986 B
Nix
Raw Normal View History

2020-06-11 00:55:30 +08:00
{
stdenv
, automake
, autoconf
, libtool
, pkg-config
, perl
2020-06-11 00:55:30 +08:00
, numactl
, hwloc
, papi
, extrae
, boost
, autoreconfHook
}:
with stdenv.lib;
stdenv.mkDerivation rec {
pname = "nanos6";
version = "${src.shortRev}";
2020-06-11 00:55:30 +08:00
branch = "master";
cacheline-width = "64";
src = builtins.fetchGit {
url = "ssh://git@bscpm02.bsc.es/nanos6/nanos6";
2020-06-11 00:55:30 +08:00
ref = branch;
};
prePatch = ''
patchShebangs scripts/generate_config.sh
'';
2020-06-11 00:55:30 +08:00
enableParallelBuilding = true;
preConfigure = ''
export CACHELINE_WIDTH=${cacheline-width}
export NANOS6_GIT_VERSION=${src.rev}
export NANOS6_GIT_BRANCH=${branch}
2020-06-11 00:55:30 +08:00
'';
# The "bindnow" flags are incompatible with ifunc resolution mechanism. We
# disable all by default, which includes bindnow.
hardeningDisable = [ "all" ];
2020-06-11 00:55:30 +08:00
buildInputs = [
autoreconfHook
autoconf
automake
libtool
pkg-config
perl
2020-06-11 00:55:30 +08:00
boost
numactl
hwloc
papi ]
++ (if (extrae != null) then [extrae] else []);
}