nixpkgs/pkgs/by-name/ar/armadillo/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

47 lines
863 B
Nix
Raw Permalink Normal View History

{
lib,
stdenv,
fetchurl,
cmake,
blas,
lapack,
superlu,
hdf5,
}:
2016-06-12 00:46:08 +00:00
stdenv.mkDerivation rec {
pname = "armadillo";
2024-10-17 17:35:01 +00:00
version = "14.0.3";
2016-06-12 00:46:08 +00:00
src = fetchurl {
url = "mirror://sourceforge/arma/armadillo-${version}.tar.xz";
2024-10-17 17:35:01 +00:00
hash = "sha256-69YhXusB7kEv7QeMip9/h9Th9hh+vNwbwJ9GCVpPQAM=";
2016-06-12 00:46:08 +00:00
};
nativeBuildInputs = [ cmake ];
buildInputs = [
blas
lapack
superlu
hdf5
];
2017-09-12 19:36:41 +00: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 00:46:08 +00:00
description = "C++ linear algebra library";
homepage = "https://arma.sourceforge.net";
license = licenses.asl20;
platforms = platforms.unix;
maintainers = with maintainers; [
juliendehos
knedlsepp
];
2016-06-12 00:46:08 +00:00
};
}