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

30 lines
840 B
Nix
Raw Normal View History

{ stdenv, fetchurl, cmake, openblasCompat, superlu, hdf5 }:
2016-06-12 03:46:08 +03:00
stdenv.mkDerivation rec {
version = "8.500.1";
2016-06-12 03:46:08 +03:00
name = "armadillo-${version}";
2016-06-12 03:46:08 +03:00
src = fetchurl {
url = "mirror://sourceforge/arma/armadillo-${version}.tar.xz";
sha256 = "0bm1g93yr79i74382pq1almakpyf42yipiqkqy742jyzwbxhxr5c";
2016-06-12 03:46:08 +03:00
};
nativeBuildInputs = [ cmake ];
buildInputs = [ openblasCompat superlu hdf5 ];
2017-09-12 22:36:41 +03:00
cmakeFlags = [
"-DLAPACK_LIBRARY=${openblasCompat}/lib/libopenblas${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";
homepage = http://arma.sourceforge.net;
license = licenses.asl20;
platforms = platforms.unix;
maintainers = with maintainers; [ juliendehos knedlsepp ];
2016-06-12 03:46:08 +03:00
};
}