nixpkgs/pkgs/development/libraries/sundials/default.nix

55 lines
1.7 KiB
Nix
Raw Normal View History

2019-07-02 14:55:34 +02:00
{ stdenv
, cmake
, fetchurl
2019-08-01 14:28:19 +02:00
, python
, openblas
2019-08-01 14:28:19 +02:00
, gfortran
, lapackSupport ? true }:
2018-03-01 10:14:18 +01:00
let openblas32 = openblas.override { blas64 = false; };
2019-08-01 14:28:19 +02:00
in stdenv.mkDerivation rec {
2018-03-01 10:14:18 +01:00
pname = "sundials";
2019-12-04 15:49:49 +01:00
version = "5.0.0";
2018-03-01 10:14:18 +01:00
buildInputs = [ python ] ++ stdenv.lib.optionals (lapackSupport) [ gfortran openblas32 ];
2019-07-02 14:55:34 +02:00
nativeBuildInputs = [ cmake ];
2018-03-01 10:14:18 +01:00
src = fetchurl {
url = "https://computation.llnl.gov/projects/${pname}/download/${pname}-${version}.tar.gz";
2019-12-04 15:49:49 +01:00
sha256 = "1lvx5pddjxgyr8kqlira36kxckz7nxwc8xilzfyx0hf607n42l9l";
2018-03-01 10:14:18 +01: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-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=${openblas32}/lib/libopenblas${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";
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
};
}