depot/pkgs/by-name/sp/spral/package.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

65 lines
1.4 KiB
Nix

{
blas,
fetchFromGitHub,
gfortran,
lapack,
lib,
llvmPackages,
meson,
metis,
ninja,
stdenv,
}:
stdenv.mkDerivation rec {
pname = "spral";
version = "2024.05.08";
src = fetchFromGitHub {
owner = "ralna";
repo = "spral";
rev = "v${version}";
hash = "sha256-1CdRwQ0LQrYcXvoGtGxR9Ug3Q2N4skXq8z+LdNpv8p4=";
};
postPatch =
''
# Skipped test: ssidst
# hwloc/linux: failed to find sysfs cpu topology directory, aborting linux discovery.
substituteInPlace tests/meson.build --replace-fail \
"subdir('ssids')" \
""
''
+ lib.optionalString stdenv.hostPlatform.isDarwin ''
# Skipped test: lsmrt, segfault
substituteInPlace tests/meson.build --replace-fail \
"['lsmrt', files('lsmr.f90')]," \
""
'';
nativeBuildInputs = [
gfortran
meson
ninja
];
buildInputs = [
blas
lapack
metis
] ++ lib.optionals stdenv.hostPlatform.isDarwin [ llvmPackages.openmp ];
mesonFlags = [ (lib.mesonBool "tests" true) ];
LDFLAGS = lib.optionals stdenv.hostPlatform.isDarwin [ "-lomp" ];
doCheck = true;
meta = {
description = "Sparse Parallel Robust Algorithms Library";
homepage = "https://github.com/ralna/spral";
changelog = "https://github.com/ralna/spral/blob/${src.rev}/ChangeLog";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ nim65s ];
};
}