Merge bscpkgs into jungle #189

Manually merged
rarias merged 1013 commits from merge-bscpkgs into master 2025-10-07 16:12:34 +02:00
2 changed files with 36 additions and 0 deletions
Showing only changes of commit c50158e3be - Show all commits

33
bsc/apps/fwi/default.nix Normal file
View File

@@ -0,0 +1,33 @@
{
stdenv
, nanos6
, mpi
, tampi
, mcxx
, icc
}:
stdenv.mkDerivation rec {
name = "nbody";
src = builtins.fetchGit {
url = "https://gitlab.com/srodrb/BSC-FWI.git";
ref = "ompss";
};
postUnpack = "sourceRoot=$sourceRoot/3_ompss";
buildInputs = [
nanos6
mpi
icc
tampi
mcxx
];
installPhase = ''
mkdir -p $out/bin
cp fwi.* $out/bin
cp ModelGenerator $out/bin
'';
}

View File

@@ -157,6 +157,9 @@ let
hpccg = callPackage ./bsc/apps/hpccg/default.nix {
};
fwi = callPackage ./bsc/apps/fwi/default.nix {
};
# Patched nix for deep cluster
inherit (callPackage ./bsc/nix/default.nix {
storeDir = "/nix/store";