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