summary refs log tree commit diff
path: root/pkgs/development/libraries/armadillo
diff options
context:
space:
mode:
authorJosef Kemetmueller <josef.kemetmueller@aon.at>2017-02-09 20:38:05 +0100
committerJosef Kemetmueller <josef.kemetmueller@aon.at>2017-02-09 20:43:56 +0100
commitce1a3e3242f9d00d68c1c973ba902a3b6cda6218 (patch)
tree2194f90bba222dcbbd003cee9c5329117029619c /pkgs/development/libraries/armadillo
parente3d9f438c357377d524036f88c45e9245c3809fc (diff)
downloadnixpkgs-ce1a3e3242f9d00d68c1c973ba902a3b6cda6218.tar
nixpkgs-ce1a3e3242f9d00d68c1c973ba902a3b6cda6218.tar.gz
nixpkgs-ce1a3e3242f9d00d68c1c973ba902a3b6cda6218.tar.bz2
nixpkgs-ce1a3e3242f9d00d68c1c973ba902a3b6cda6218.tar.lz
nixpkgs-ce1a3e3242f9d00d68c1c973ba902a3b6cda6218.tar.xz
nixpkgs-ce1a3e3242f9d00d68c1c973ba902a3b6cda6218.tar.zst
nixpkgs-ce1a3e3242f9d00d68c1c973ba902a3b6cda6218.zip
armadillo: 7.200.2 -> 7.700.0
This release fixes compatibility with cmake 3.7.1.
Additionally I found out that armadillo only needs the hdf5-C library
and not the C++ layer.
Diffstat (limited to 'pkgs/development/libraries/armadillo')
-rw-r--r--pkgs/development/libraries/armadillo/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/development/libraries/armadillo/default.nix b/pkgs/development/libraries/armadillo/default.nix
index 62b5ddf8011..7f173b21156 100644
--- a/pkgs/development/libraries/armadillo/default.nix
+++ b/pkgs/development/libraries/armadillo/default.nix
@@ -1,15 +1,15 @@
-{ stdenv, fetchurl, cmake, openblasCompat, superlu, hdf5-cpp }:
+{ stdenv, fetchurl, cmake, openblasCompat, superlu, hdf5 }:
 
 stdenv.mkDerivation rec {
-  version = "7.200.2";
+  version = "7.700.0";
   name = "armadillo-${version}";
 
   src = fetchurl {
     url = "mirror://sourceforge/arma/armadillo-${version}.tar.xz";
-    sha256 = "1yvx75caks477jqwx5gspi6946jialddk00wdvg6dnh5wdi2xasm";
+    sha256 = "152x274hd3f59xgd27k9d3ikwb3w62v1v5hpw4lp1yzdyy8980pr";
   };
 
-  buildInputs = [ cmake openblasCompat superlu hdf5-cpp ];
+  buildInputs = [ cmake openblasCompat superlu hdf5 ];
 
   cmakeFlags = [ "-DDETECT_HDF5=ON" ];
 
@@ -20,6 +20,6 @@ stdenv.mkDerivation rec {
     homepage = http://arma.sourceforge.net;
     license = licenses.mpl20;
     platforms = platforms.unix;
-    maintainers = [ maintainers.juliendehos ];
+    maintainers = with maintainers; [ juliendehos knedlsepp ];
   };
 }