1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-02 02:24:27 +00:00
nixpkgs/pkgs/development/libraries/armadillo/default.nix

30 lines
813 B
Nix
Raw Normal View History

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