bscpkgs/bsc/nanos6/default.nix

52 lines
886 B
Nix
Raw Normal View History

2020-06-09 00:01:33 +08:00
{
stdenv
, fetchurl
, automake
, autoconf
, libtool
, pkg-config
, numactl
, hwloc
, papi
#, gnumake
2020-06-10 00:21:02 +08:00
, extrae
2020-06-09 00:01:33 +08:00
, boost
}:
with stdenv.lib;
stdenv.mkDerivation rec {
pname = "nanos6";
version = "2.4";
2020-06-09 00:01:33 +08:00
src = fetchurl {
url = "https://pm.bsc.es/ftp/ompss-2/releases/ompss-2-2020.06.tar.gz";
sha256 = "0f9hy2avblv31wi4910x81wc47dwx8x9nd72y02lgrhl7fc9i2sf";
2020-06-09 00:01:33 +08:00
};
enableParallelBuilding = false;
2020-06-09 00:01:33 +08:00
preConfigure = ''
cd ${pname}-${version}
sed -i 's|/bin/echo|echo|g' loader/scripts/common.sh loader/scripts/lint/common.sh
'';
2020-06-15 17:54:22 +08:00
configureFlags = [
"--with-symbol-resolution=indirect"
];
2020-06-09 00:01:33 +08:00
#configureFlags = []
# ++ (if (extrae != null) then ["--with-extrae=${extrae}"] else [""]);
buildInputs = [
autoconf
automake
libtool
pkg-config
boost
numactl
hwloc
papi ]
2020-06-10 00:21:02 +08:00
++ (if (extrae != null) then [extrae] else []);
2020-06-09 00:01:33 +08:00
}