Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
57 lines
1.5 KiB
Nix
57 lines
1.5 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
fetchpatch,
|
|
cmake,
|
|
gklib,
|
|
llvmPackages,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "metis";
|
|
version = "5.2.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "KarypisLab";
|
|
repo = "METIS";
|
|
tag = "v${finalAttrs.version}";
|
|
hash = "sha256-eddLR6DvZ+2LeR0DkknN6zzRvnW+hLN2qeI+ETUPcac=";
|
|
};
|
|
|
|
patches = [
|
|
# fix gklib link error
|
|
(fetchpatch {
|
|
url = "https://gitweb.gentoo.org/repo/gentoo.git/plain/sci-libs/metis/files/metis-5.2.1-add-gklib-as-required.patch?id=c78ecbd3fdf9b33e307023baf0de12c4448dd283";
|
|
hash = "sha256-uoXMi6pMs5VrzUmjsLlQYFLob1A8NAt9CbFi8qhQXVQ=";
|
|
})
|
|
# cmake 4 compatibility
|
|
(fetchpatch {
|
|
name = "metis-cmake-minimum-required-bump.patch";
|
|
url = "https://github.com/KarypisLab/METIS/commit/350931887dfc00c2e3cb7551c5abf30e0297126a.patch";
|
|
hash = "sha256-vX1GSZOLDxO9IIAQmNa9ADreEWSHCU9eF9L8qiSHye8=";
|
|
})
|
|
];
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
buildInputs = [ gklib ] ++ lib.optional stdenv.cc.isClang llvmPackages.openmp;
|
|
|
|
preConfigure = ''
|
|
make config
|
|
'';
|
|
|
|
cmakeFlags = [
|
|
(lib.cmakeBool "OPENMP" true)
|
|
(lib.cmakeBool "SHARED" (!stdenv.hostPlatform.isStatic))
|
|
];
|
|
|
|
meta = {
|
|
description = "Serial graph partitioning and fill-reducing matrix ordering";
|
|
homepage = "https://github.com/KarypisLab/METIS";
|
|
license = lib.licenses.asl20;
|
|
maintainers = with lib.maintainers; [ qbisi ];
|
|
platforms = lib.platforms.all;
|
|
};
|
|
})
|