mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
763f7e321c
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
74 lines
2 KiB
Nix
74 lines
2 KiB
Nix
{ lib, stdenv
|
|
, cmake
|
|
, fetchurl
|
|
, python
|
|
, blas
|
|
, lapack
|
|
, gfortran
|
|
, suitesparse
|
|
, lapackSupport ? true
|
|
, kluSupport ? true
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "sundials";
|
|
version = "5.7.0";
|
|
|
|
outputs = [ "out" "examples" ];
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/LLNL/sundials/releases/download/v${version}/sundials-${version}.tar.gz";
|
|
hash = "sha256-SNp7qoFS3bIq7RsC2C0du0+/6iKs9nY0ARqgMDoQCkM=";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
buildInputs = [
|
|
python
|
|
]
|
|
++ lib.optionals (lapackSupport)
|
|
# Check that the same index size is used for both libraries
|
|
(assert (blas.isILP64 == lapack.isILP64); [
|
|
gfortran
|
|
blas
|
|
lapack
|
|
])
|
|
# KLU support is based on Suitesparse.
|
|
# It is tested upstream according to the section 1.1.4 of
|
|
# [INSTALL_GUIDE.pdf](https://raw.githubusercontent.com/LLNL/sundials/master/INSTALL_GUIDE.pdf)
|
|
++ lib.optionals (kluSupport) [
|
|
suitesparse
|
|
];
|
|
|
|
cmakeFlags = [
|
|
"-DEXAMPLES_INSTALL_PATH=${placeholder "examples"}/share/examples"
|
|
] ++ lib.optionals (lapackSupport) [
|
|
"-DENABLE_LAPACK=ON"
|
|
"-DLAPACK_LIBRARIES=${lapack}/lib/liblapack${stdenv.hostPlatform.extensions.sharedLibrary}"
|
|
] ++ lib.optionals (kluSupport) [
|
|
"-DENABLE_KLU=ON"
|
|
"-DKLU_INCLUDE_DIR=${suitesparse.dev}/include"
|
|
"-DKLU_LIBRARY_DIR=${suitesparse}/lib"
|
|
] ++ [(
|
|
# Use the correct index type according to lapack and blas used. They are
|
|
# already supposed to be compatible but we check both for extra safety. 64
|
|
# should be the default but we prefer to be explicit, for extra safety.
|
|
if blas.isILP64 then
|
|
"-DSUNDIALS_INDEX_SIZE=64"
|
|
else
|
|
"-DSUNDIALS_INDEX_SIZE=32"
|
|
)]
|
|
;
|
|
|
|
doCheck = true;
|
|
checkTarget = "test";
|
|
|
|
meta = with lib; {
|
|
description = "Suite of nonlinear differential/algebraic equation solvers";
|
|
homepage = "https://computation.llnl.gov/projects/sundials";
|
|
platforms = platforms.all;
|
|
maintainers = with maintainers; [ idontgetoutmuch ];
|
|
license = licenses.bsd3;
|
|
};
|
|
}
|