scotch: 7.0.4 -> 7.0.5 (#337565)

This commit is contained in:
Peder Bergebakken Sundt 2024-09-13 02:47:32 +02:00 committed by GitHub
commit 1d28f484f4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 11 additions and 3 deletions

View File

@ -49,7 +49,7 @@ stdenv.mkDerivation (finalAttrs: {
]
++ [
"LSCOTCHDIR=${scotch}/lib"
"ISCOTCH=-I${scotch}/include"
"ISCOTCH=-I${scotch.dev}/include"
"LMETISDIR=${metis}/lib"
"IMETIS=-I${metis}/include"
"allshared"

View File

@ -14,16 +14,24 @@
stdenv.mkDerivation (finalAttrs: {
pname = "scotch";
version = "7.0.4";
version = "7.0.5";
src = fetchFromGitLab {
domain = "gitlab.inria.fr";
owner = "scotch";
repo = "scotch";
rev = "v${finalAttrs.version}";
hash = "sha256-uaox4Q9pTF1r2BZjvnU2LE6XkZw3x9mGSKLdRVUobGU=";
hash = "sha256-XXkVwTr8cbYfzXWWkPERTmjfE86JHUUuU6yxjp9k6II=";
};
outputs = [
"bin"
"dev"
"out"
];
cmakeFlags = [ "-DBUILD_SHARED_LIBS=ON" ];
nativeBuildInputs = [
cmake
gfortran