Merge bscpkgs into jungle #189

Manually merged
rarias merged 1013 commits from merge-bscpkgs into master 2025-10-07 16:12:34 +02:00
Showing only changes of commit 99f3326609 - Show all commits

View File

@@ -7,6 +7,7 @@
, vtk
, boost
, gitBranch ? "master"
, gitCommit ? null
, numComm ? null
, nbx ? null
, nby ? null
@@ -20,10 +21,13 @@ with stdenv.lib;
stdenv.mkDerivation rec {
name = "saiph";
src = builtins.fetchGit {
inherit gitBranch gitCommit;
src = builtins.fetchGit ({
url = "ssh://git@bscpm03.bsc.es/DSLs/saiph.git";
ref = "${gitBranch}";
};
} // (if (gitCommit != null) then {
rev = gitCommit;
} else {}));
programPath = "/bin/Heat3D_vect";