3
0
Fork 0
forked from mirrors/nixpkgs

armadillo: 7.700.0 -> 7.800.0

armadillo: Added forgotton version update
This commit is contained in:
ndowens 2017-03-11 08:55:45 -06:00
parent 798623fd2b
commit f3dab1a1e9

View file

@ -1,24 +1,25 @@
{ stdenv, fetchurl, cmake, openblasCompat, superlu, hdf5 }:
stdenv.mkDerivation rec {
version = "7.700.0";
version = "7.800.1";
name = "armadillo-${version}";
src = fetchurl {
url = "mirror://sourceforge/arma/armadillo-${version}.tar.xz";
sha256 = "152x274hd3f59xgd27k9d3ikwb3w62v1v5hpw4lp1yzdyy8980pr";
sha256 = "1nxq2jp4jlvinynv0l04rpdzpnkzdsng0d5vi3hilc0hlsjnbnjs";
};
buildInputs = [ cmake openblasCompat superlu hdf5 ];
nativeBuildInputs = [ cmake ];
buildInputs = [ openblasCompat superlu hdf5 ];
cmakeFlags = [ "-DDETECT_HDF5=ON" ];
patches = [ ./use-unix-config-on-OS-X.patch ];
patches = [ ./use-unix-config-on-OS-X.patch ];
meta = with stdenv.lib; {
description = "C++ linear algebra library";
homepage = http://arma.sourceforge.net;
license = licenses.mpl20;
license = licenses.apl2;
platforms = platforms.unix;
maintainers = with maintainers; [ juliendehos knedlsepp ];
};