armadillo: init at 7.200.1b

This commit is contained in:
Julien Dehos 2016-06-12 02:46:08 +02:00
parent c3d5a0a7df
commit cb6e9e5e24
2 changed files with 25 additions and 0 deletions

View file

@ -0,0 +1,23 @@
{stdenv, fetchurl, cmake, pkgconfig, atlas, blas, openblas}:
stdenv.mkDerivation rec {
version = "7.200.1b";
name = "armadillo-${version}";
src = fetchurl {
url = "http://sourceforge.net/projects/arma/files/armadillo-${version}.tar.xz";
sha256 = "00s8xrywc4aipipq1zpd6q9gzqmsiv8cwd25zvb1csrpninmidvc";
};
unpackCmd = [ "tar -xf ${src}" ];
nativeBuildInputs = [ cmake atlas blas openblas ];
meta = with stdenv.lib; {
description = "C++ linear algebra library";
homepage = "http://arma.sourceforge.net" ;
license = licenses.mpl20;
platforms = stdenv.lib.platforms.linux ;
maintainers = [ stdenv.lib.maintainers.juliendehos ];
};
}

View file

@ -6610,6 +6610,8 @@ in
# apr with db58 on freebsd (nov 2015), for unknown reasons
};
armadillo = callPackage ../development/libraries/armadillo {};
assimp = callPackage ../development/libraries/assimp { };
asio = callPackage ../development/libraries/asio { };