mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
armadillo: init at 7.200.1b
This commit is contained in:
parent
c3d5a0a7df
commit
cb6e9e5e24
2 changed files with 25 additions and 0 deletions
23
pkgs/development/libraries/armadillo/default.nix
Normal file
23
pkgs/development/libraries/armadillo/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue