mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-30 01:20:40 +00:00
30 lines
817 B
Nix
30 lines
817 B
Nix
{ stdenv, fetchurl, cmake, blas, lapack, superlu, hdf5 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "armadillo";
|
|
version = "9.900.3";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/arma/armadillo-${version}.tar.xz";
|
|
sha256 = "02pwhf3y2qq50dswjvfcijaw938d1zi1hxr17msv2x1ahlvff5fn";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
buildInputs = [ blas lapack superlu hdf5 ];
|
|
|
|
cmakeFlags = [
|
|
"-DLAPACK_LIBRARY=${lapack}/lib/liblapack${stdenv.hostPlatform.extensions.sharedLibrary}"
|
|
"-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.asl20;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ juliendehos knedlsepp ];
|
|
};
|
|
}
|