nixpkgs/pkgs/development/libraries/armadillo/default.nix

30 lines
817 B
Nix
Raw Normal View History

{ stdenv, fetchurl, cmake, blas, lapack, superlu, hdf5 }:
2016-06-12 03:46:08 +03:00
stdenv.mkDerivation rec {
pname = "armadillo";
2020-05-04 17:19:12 +03:00
version = "9.870.2";
2016-06-12 03:46:08 +03:00
src = fetchurl {
url = "mirror://sourceforge/arma/armadillo-${version}.tar.xz";
2020-05-04 17:19:12 +03:00
sha256 = "0mpp1iq4ws9yhcv0bnn0czzyim7whcan34c7a052sh8w9kp5y6sl";
2016-06-12 03:46:08 +03:00
};
nativeBuildInputs = [ cmake ];
buildInputs = [ blas lapack superlu hdf5 ];
2017-09-12 22:36:41 +03:00
cmakeFlags = [
"-DLAPACK_LIBRARY=${lapack}/lib/liblapack${stdenv.hostPlatform.extensions.sharedLibrary}"
"-DDETECT_HDF5=ON"
];
patches = [ ./use-unix-config-on-OS-X.patch ];
2016-06-12 03:46:08 +03:00
meta = with stdenv.lib; {
description = "C++ linear algebra library";
2020-04-05 12:11:25 +03:00
homepage = "http://arma.sourceforge.net";
license = licenses.asl20;
platforms = platforms.unix;
maintainers = with maintainers; [ juliendehos knedlsepp ];
2016-06-12 03:46:08 +03:00
};
}