aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/libraries/sundials
diff options
context:
space:
mode:
authorArthur Carcano <arthur.carcano@gmail.com>2020-06-24 22:35:10 +0200
committerJon <jonringer@users.noreply.github.com>2020-06-24 14:56:46 -0700
commit70cf9126842b8394a7453ffb2190e47c8e63f7a4 (patch)
tree409131dd1a71c9dae61d5ed528f2e285952c672b /pkgs/development/libraries/sundials
parente7cc52a114ce82219ca30eeee5a34a2100f9e976 (diff)
sundials: 5.1.0 -> 5.3.0
Diffstat (limited to 'pkgs/development/libraries/sundials')
-rw-r--r--pkgs/development/libraries/sundials/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/libraries/sundials/default.nix b/pkgs/development/libraries/sundials/default.nix
index 46cf437d72ca..24980e9b709b 100644
--- a/pkgs/development/libraries/sundials/default.nix
+++ b/pkgs/development/libraries/sundials/default.nix
@@ -11,14 +11,14 @@ assert (!blas.isILP64) && (!lapack.isILP64);
stdenv.mkDerivation rec {
pname = "sundials";
- version = "5.1.0";
+ version = "5.3.0";
buildInputs = [ python ] ++ stdenv.lib.optionals (lapackSupport) [ gfortran blas lapack ];
nativeBuildInputs = [ cmake ];
src = fetchurl {
url = "https://computation.llnl.gov/projects/${pname}/download/${pname}-${version}.tar.gz";
- sha256 = "08cvzmbr2qc09ayq4f5j07lw97hl06q4dl26vh4kh822mm7x28pv";
+ sha256 = "19xwi7pz35s2nqgldm6r0jl2k0bs36zhbpnmmzc56s1n3bhzgpw8";
};
patches = [