f3dab1a1e9
armadillo: Added forgotton version update
27 lines
730 B
Nix
27 lines
730 B
Nix
{ stdenv, fetchurl, cmake, openblasCompat, superlu, hdf5 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "7.800.1";
|
|
name = "armadillo-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/arma/armadillo-${version}.tar.xz";
|
|
sha256 = "1nxq2jp4jlvinynv0l04rpdzpnkzdsng0d5vi3hilc0hlsjnbnjs";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
buildInputs = [ openblasCompat superlu hdf5 ];
|
|
|
|
cmakeFlags = [ "-DDETECT_HDF5=ON" ];
|
|
|
|
patches = [ ./use-unix-config-on-OS-X.patch ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "C++ linear algebra library";
|
|
homepage = http://arma.sourceforge.net;
|
|
license = licenses.apl2;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ juliendehos knedlsepp ];
|
|
};
|
|
}
|