2019-07-02 13:55:34 +01:00
|
|
|
{ stdenv
|
|
|
|
, cmake
|
|
|
|
, fetchurl
|
2019-08-01 13:28:19 +01:00
|
|
|
, python
|
2019-12-09 20:13:39 +00:00
|
|
|
, openblas
|
2019-08-01 13:28:19 +01:00
|
|
|
, gfortran
|
|
|
|
, lapackSupport ? true }:
|
2018-03-01 09:14:18 +00:00
|
|
|
|
2019-12-09 20:13:39 +00:00
|
|
|
let openblas32 = openblas.override { blas64 = false; };
|
2019-08-01 13:28:19 +01:00
|
|
|
|
|
|
|
in stdenv.mkDerivation rec {
|
2018-03-01 09:14:18 +00:00
|
|
|
pname = "sundials";
|
2020-02-18 19:03:21 +00:00
|
|
|
version = "5.1.0";
|
2018-03-01 09:14:18 +00:00
|
|
|
|
2019-12-09 20:13:39 +00:00
|
|
|
buildInputs = [ python ] ++ stdenv.lib.optionals (lapackSupport) [ gfortran openblas32 ];
|
2019-07-02 13:55:34 +01:00
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
|
2018-03-01 09:14:18 +00:00
|
|
|
src = fetchurl {
|
2018-12-18 14:46:05 +00:00
|
|
|
url = "https://computation.llnl.gov/projects/${pname}/download/${pname}-${version}.tar.gz";
|
2020-02-18 19:03:21 +00:00
|
|
|
sha256 = "08cvzmbr2qc09ayq4f5j07lw97hl06q4dl26vh4kh822mm7x28pv";
|
2018-03-01 09:14:18 +00:00
|
|
|
};
|
|
|
|
|
2019-08-02 12:12:22 +01:00
|
|
|
patches = [
|
|
|
|
(fetchurl {
|
|
|
|
# https://github.com/LLNL/sundials/pull/19
|
|
|
|
url = "https://github.com/LLNL/sundials/commit/1350421eab6c5ab479de5eccf6af2dcad1eddf30.patch";
|
|
|
|
sha256 = "0g67lixp9m85fqpb9rzz1hl1z8ibdg0ldwq5z6flj5zl8a7cw52l";
|
|
|
|
})
|
|
|
|
];
|
2019-08-01 13:02:00 +01:00
|
|
|
|
2019-07-02 13:55:34 +01:00
|
|
|
cmakeFlags = [
|
|
|
|
"-DEXAMPLES_INSTALL_PATH=${placeholder "out"}/share/examples"
|
2019-08-01 13:28:19 +01:00
|
|
|
] ++ stdenv.lib.optionals (lapackSupport) [
|
|
|
|
"-DSUNDIALS_INDEX_TYPE=int32_t"
|
|
|
|
"-DLAPACK_ENABLE=ON"
|
2019-12-09 20:13:39 +00:00
|
|
|
"-DLAPACK_LIBRARIES=${openblas32}/lib/libopenblas${stdenv.hostPlatform.extensions.sharedLibrary}"
|
2019-07-02 13:55:34 +01:00
|
|
|
];
|
2018-03-01 09:14:18 +00:00
|
|
|
|
2019-08-01 13:02:00 +01:00
|
|
|
doCheck = true;
|
|
|
|
checkPhase = "make test";
|
|
|
|
|
2018-03-01 09:14:18 +00:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Suite of nonlinear differential/algebraic equation solvers";
|
2018-12-18 14:46:05 +00:00
|
|
|
homepage = https://computation.llnl.gov/projects/sundials;
|
2018-03-01 09:14:18 +00:00
|
|
|
platforms = platforms.all;
|
2019-07-02 13:55:34 +01:00
|
|
|
maintainers = with maintainers; [ flokli idontgetoutmuch ];
|
2018-03-11 15:21:37 +00:00
|
|
|
license = licenses.bsd3;
|
2018-03-01 09:14:18 +00:00
|
|
|
};
|
|
|
|
}
|