Add nanos6 git version

This commit is contained in:
Rodrigo 2020-06-10 18:55:30 +02:00
parent b600bb77d4
commit 37b49e1dd3
3 changed files with 62 additions and 2 deletions

View File

@ -20,7 +20,7 @@ stdenv.mkDerivation rec {
version = "2.3.2";
src = fetchurl {
url = https://pm.bsc.es/ftp/ompss-2/releases/ompss-2-2019.11.2.tar.gz;
url = "https://pm.bsc.es/ftp/ompss-2/releases/ompss-2-2019.11.2.tar.gz";
sha256 = "03v1kpggdch25m1wfrdjl6crq252dgy6pms8h94d5jwcjh06fbf8";
};

56
bsc/nanos6/git.nix Normal file
View File

@ -0,0 +1,56 @@
{
stdenv
, automake
, autoconf
, libtool
, pkg-config
, numactl
, hwloc
, papi
, extrae
, boost
, autoreconfHook
}:
with stdenv.lib;
stdenv.mkDerivation rec {
pname = "nanos6";
version = "2.3.2";
branch = "master";
cacheline-width = "64";
src = builtins.fetchGit {
url = "git@bscpm02.bsc.es:rarias/nanos6";
rev = "17415b8f1064ccd0b7cfcf7097a64e8d2297c81b";
ref = branch;
};
enableParallelBuilding = true;
patchPhase = ''
export NANOS6_GIT_VERSION=${src.rev}
export NANOS6_GIT_BRANCH=${branch}
scripts/gen-version.sh
'';
preConfigure = ''
export CACHELINE_WIDTH=${cacheline-width}
'';
configureFlags = [
"--with-symbol-resolution=indirect"
];
buildInputs = [
autoreconfHook
autoconf
automake
libtool
pkg-config
boost
numactl
hwloc
papi ]
++ (if (extrae != null) then [extrae] else []);
}

View File

@ -29,7 +29,11 @@ let
mpi = mpi;
};
nanos6 = callPackage ./bsc/nanos6 {
nanos6 = callPackage ./bsc/nanos6/default.nix {
extrae = extrae;
};
nanos6-git = callPackage ./bsc/nanos6/git.nix {
extrae = extrae;
};