567e8dfd8e
This commit was created by a combination of scripts and tools: - an ast-grep script to prefix things in meta with `lib.`, - a modified nixf-diagnose / nixf combination to remove unused `with lib;`, and - regular nixfmt. Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
122 lines
3.0 KiB
Nix
122 lines
3.0 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
gfortran,
|
|
blas,
|
|
lapack,
|
|
metis,
|
|
fixDarwinDylibNames,
|
|
gmp,
|
|
mpfr,
|
|
config,
|
|
enableCuda ? config.cudaSupport,
|
|
cudaPackages,
|
|
openmp ? null,
|
|
}@inputs:
|
|
|
|
let
|
|
stdenv = throw "Use effectiveStdenv instead";
|
|
effectiveStdenv = if enableCuda then cudaPackages.backendStdenv else inputs.stdenv;
|
|
in
|
|
effectiveStdenv.mkDerivation rec {
|
|
pname = "suitesparse";
|
|
version = "5.13.0";
|
|
|
|
outputs = [
|
|
"out"
|
|
"dev"
|
|
"doc"
|
|
];
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "DrTimothyAldenDavis";
|
|
repo = "SuiteSparse";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-Anen1YtXsSPhk8DpA4JtADIz9m8oXFl9umlkb4iImf8=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
]
|
|
++ lib.optionals effectiveStdenv.hostPlatform.isDarwin [
|
|
fixDarwinDylibNames
|
|
]
|
|
++ lib.optionals enableCuda [
|
|
cudaPackages.cuda_nvcc
|
|
];
|
|
|
|
# Use compatible indexing for lapack and blas used
|
|
buildInputs =
|
|
assert (blas.isILP64 == lapack.isILP64);
|
|
[
|
|
blas
|
|
lapack
|
|
metis
|
|
(lib.getLib gfortran.cc)
|
|
gmp
|
|
mpfr
|
|
]
|
|
++ lib.optionals effectiveStdenv.cc.isClang [
|
|
openmp
|
|
]
|
|
++ lib.optionals enableCuda [
|
|
cudaPackages.cuda_cudart
|
|
cudaPackages.cuda_cccl
|
|
cudaPackages.libcublas
|
|
];
|
|
|
|
preConfigure = ''
|
|
# Mongoose and GraphBLAS are packaged separately
|
|
sed -i "Makefile" -e '/GraphBLAS\|Mongoose/d'
|
|
'';
|
|
|
|
makeFlags = [
|
|
"INSTALL=${placeholder "out"}"
|
|
"INSTALL_INCLUDE=${placeholder "dev"}/include"
|
|
"JOBS=$(NIX_BUILD_CORES)"
|
|
"MY_METIS_LIB=-lmetis"
|
|
]
|
|
++ lib.optionals blas.isILP64 [
|
|
"CFLAGS=-DBLAS64"
|
|
]
|
|
++ lib.optionals enableCuda [
|
|
"CUDA_PATH=${lib.getBin cudaPackages.cuda_nvcc}"
|
|
"CUDART_LIB=${lib.getLib cudaPackages.cuda_cudart}/lib/libcudart.so"
|
|
"CUBLAS_LIB=${lib.getLib cudaPackages.libcublas}/lib/libcublas.so"
|
|
]
|
|
++ lib.optionals effectiveStdenv.hostPlatform.isDarwin [
|
|
# Unless these are set, the build will attempt to use `Accelerate` on darwin, see:
|
|
# https://github.com/DrTimothyAldenDavis/SuiteSparse/blob/v5.13.0/SuiteSparse_config/SuiteSparse_config.mk#L368
|
|
"BLAS=-lblas"
|
|
"LAPACK=-llapack"
|
|
];
|
|
|
|
env = {
|
|
# in GCC14 these two warnings were promoted to error
|
|
# let's make them warnings again to fix the build failure
|
|
NIX_CFLAGS_COMPILE = "-Wno-error=implicit-function-declaration -Wno-error=incompatible-pointer-types";
|
|
}
|
|
// lib.optionalAttrs effectiveStdenv.hostPlatform.isDarwin {
|
|
# Ensure that there is enough space for the `fixDarwinDylibNames` hook to
|
|
# update the install names of the output dylibs.
|
|
NIX_LDFLAGS = "-headerpad_max_install_names";
|
|
};
|
|
|
|
buildFlags = [
|
|
# Build individual shared libraries, not demos
|
|
"library"
|
|
];
|
|
|
|
meta = {
|
|
homepage = "http://faculty.cse.tamu.edu/davis/suitesparse.html";
|
|
description = "Suite of sparse matrix algorithms";
|
|
license = with lib.licenses; [
|
|
bsd2
|
|
gpl2Plus
|
|
lgpl21Plus
|
|
];
|
|
maintainers = with lib.maintainers; [ ttuegel ];
|
|
platforms = with lib.platforms; unix;
|
|
};
|
|
}
|