mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
Merge pull request #22597 from knedlsepp/bump-armadillo
armadillo: 7.200.2 -> 7.700.0
This commit is contained in:
commit
b1e254ac55
1 changed files with 5 additions and 5 deletions
|
@ -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 ];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue