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

51 lines
1.4 KiB
Nix
Raw Normal View History

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