summary refs log tree commit diff
diff options
context:
space:
mode:
authorR. RyanTM <ryantm-bot@ryantm.com>2018-12-18 06:46:05 -0800
committerRenaud <c0bw3b@users.noreply.github.com>2018-12-18 15:46:05 +0100
commite60233db007a81eb846a39ca4a17db00d8d8cc26 (patch)
treecb3014ee4ce8957c7025ecbb248ad4596bc3ec6d
parent4d1487908195d8c0975a3aca0b7a3a2dbf7301a8 (diff)
downloadnixpkgs-e60233db007a81eb846a39ca4a17db00d8d8cc26.tar
nixpkgs-e60233db007a81eb846a39ca4a17db00d8d8cc26.tar.gz
nixpkgs-e60233db007a81eb846a39ca4a17db00d8d8cc26.tar.bz2
nixpkgs-e60233db007a81eb846a39ca4a17db00d8d8cc26.tar.lz
nixpkgs-e60233db007a81eb846a39ca4a17db00d8d8cc26.tar.xz
nixpkgs-e60233db007a81eb846a39ca4a17db00d8d8cc26.tar.zst
nixpkgs-e60233db007a81eb846a39ca4a17db00d8d8cc26.zip
sundials: 3.2.1 -> 4.0.0
* sundials: 3.2.1 -> 4.0.0 (#52022)

Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/sundials/versions

* sundials: cleanup
-rw-r--r--pkgs/development/libraries/sundials/default.nix11
1 files changed, 6 insertions, 5 deletions
diff --git a/pkgs/development/libraries/sundials/default.nix b/pkgs/development/libraries/sundials/default.nix
index f3cfc1e56e8..2a5acc31382 100644
--- a/pkgs/development/libraries/sundials/default.nix
+++ b/pkgs/development/libraries/sundials/default.nix
@@ -3,23 +3,24 @@
 stdenv.mkDerivation rec {
 
   pname = "sundials";
-  version = "3.2.1";
+  version = "4.0.0";
   name = "${pname}-${version}";
 
   src = fetchurl {
-  url = "https://computation.llnl.gov/projects/${pname}/download/${pname}-${version}.tar.gz";
-  sha256 = "0238r1qnwqz13wcjzfsbcfi8rfnlxcjjmxq2vpf2qf5jgablvna7";
+    url = "https://computation.llnl.gov/projects/${pname}/download/${pname}-${version}.tar.gz";
+    sha256 = "06cspmhx9qn7x722lmy9q2jr80hnnv2h7n54da7y5m951p1xfgcm";
   };
 
   preConfigure = ''
     export cmakeFlags="-DCMAKE_INSTALL_PREFIX=$out -DEXAMPLES_INSTALL_PATH=$out/share/examples $cmakeFlags"
   '';
   
-  buildInputs = [ cmake python ];
+  nativeBuildInputs = [ cmake ];
+  buildInputs = [ python ];
 
   meta = with stdenv.lib; {
     description = "Suite of nonlinear differential/algebraic equation solvers";
-    homepage    = https://computation.llnl.gov/casc/sundials/main.html;
+    homepage    = https://computation.llnl.gov/projects/sundials;
     platforms   = platforms.all;
     maintainers = [ maintainers.idontgetoutmuch ];
     license     = licenses.bsd3;