about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorRyan Mulligan <ryan@ryantm.com>2019-07-19 05:11:39 -0700
committerGitHub <noreply@github.com>2019-07-19 05:11:39 -0700
commit1209ee987e995d5462bece7e79b37f6cbc18a72b (patch)
treeed2ab87392c34d24e0add367bffcf305e3ab969e /pkgs
parent588513f1c627eac6fb07de99fbdb6b22a8ad5ab5 (diff)
parent144817f55243f75bf891e8bb841c183854871a91 (diff)
downloadnixlib-1209ee987e995d5462bece7e79b37f6cbc18a72b.tar
nixlib-1209ee987e995d5462bece7e79b37f6cbc18a72b.tar.gz
nixlib-1209ee987e995d5462bece7e79b37f6cbc18a72b.tar.bz2
nixlib-1209ee987e995d5462bece7e79b37f6cbc18a72b.tar.lz
nixlib-1209ee987e995d5462bece7e79b37f6cbc18a72b.tar.xz
nixlib-1209ee987e995d5462bece7e79b37f6cbc18a72b.tar.zst
nixlib-1209ee987e995d5462bece7e79b37f6cbc18a72b.zip
Merge pull request #65056 from r-ryantm/auto-update/armadillo
armadillo: 9.500.2 -> 9.600.4
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/libraries/armadillo/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/libraries/armadillo/default.nix b/pkgs/development/libraries/armadillo/default.nix
index 10649092d20d..6619235ab82d 100644
--- a/pkgs/development/libraries/armadillo/default.nix
+++ b/pkgs/development/libraries/armadillo/default.nix
@@ -1,12 +1,12 @@
 { stdenv, fetchurl, cmake, openblasCompat, superlu, hdf5 }:
 
 stdenv.mkDerivation rec {
-  version = "9.500.2";
+  version = "9.600.4";
   name = "armadillo-${version}";
 
   src = fetchurl {
     url = "mirror://sourceforge/arma/armadillo-${version}.tar.xz";
-    sha256 = "17npgyavzrbf4d3m28f9j7j8hk2pc91ai9nkkp39hkdflq3kw6hb";
+    sha256 = "1gph9acmk8wqs6n00csvbs94rh153y7ml0w2zlbk9ia8xbgbdbbx";
   };
 
   nativeBuildInputs = [ cmake ];