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

26 lines
697 B
Nix
Raw Normal View History

{ stdenv, fetchurl, cmake, openblasCompat, superlu, hdf5-cpp }:
2016-06-12 00:46:08 +00:00
stdenv.mkDerivation rec {
version = "7.200.2";
2016-06-12 00:46:08 +00:00
name = "armadillo-${version}";
2016-06-12 00:46:08 +00:00
src = fetchurl {
url = "mirror://sourceforge/arma/armadillo-${version}.tar.xz";
sha256 = "1yvx75caks477jqwx5gspi6946jialddk00wdvg6dnh5wdi2xasm";
2016-06-12 00:46:08 +00:00
};
buildInputs = [ cmake openblasCompat superlu hdf5-cpp ];
cmakeFlags = [ "-DDETECT_HDF5=ON" ];
patches = [ ./use-unix-config-on-OS-X.patch ];
2016-06-12 00:46:08 +00:00
meta = with stdenv.lib; {
description = "C++ linear algebra library";
homepage = http://arma.sourceforge.net;
2016-06-12 00:46:08 +00:00
license = licenses.mpl20;
platforms = platforms.unix;
maintainers = [ maintainers.juliendehos ];
2016-06-12 00:46:08 +00:00
};
}