Update 'derivation.nix'

keldu 2023-02-15 17:44:17 +01:00
parent a00be4179f
commit 4ef02b79c6
1 changed files with 7 additions and 6 deletions

View File

@ -12,18 +12,19 @@
, rapidjson
, extraBuildInputs ? []
, extraCmakeFlags ? []
, srcPath ? fetchFromGitHub {
repo = "ginkgo";
owner = "ginkgo-project";
rev = "234594c92b58e2384dfb43c2d08e7f43e2b58e7a";
sha256 = "eKQfuXnTMGgEzuksXzZE4QR5ILfVbw+dK9IsRdmalQc=";
}
}:
let
basename = "ginkgo-hpc";
version = "1.5.0";
cpp_c = cppCompiler;
src = fetchFromGitHub {
repo = "ginkgo";
owner = "ginkgo-project";
rev = "234594c92b58e2384dfb43c2d08e7f43e2b58e7a";
sha256 = "eKQfuXnTMGgEzuksXzZE4QR5ILfVbw+dK9IsRdmalQc=";
};
src = srcPath;
extra_build_inputs = extraBuildInputs;
base_cmake_flags = [
"-DGINKGO_BUILD_TESTS=ON"