armadillo 12.6.7 -> 12.8.0 https://repology.org/project/armadillo/versions attrpath: armadillo Checking auto update branch... No auto update branch exists Old version 12.6.7" not present in master derivation file with contents: { lib, stdenv, fetchurl, cmake, blas, lapack, superlu, hdf5 }: stdenv.mkDerivation rec { pname = "armadillo"; version = "12.8.0"; src = fetchurl { url = "mirror://sourceforge/arma/armadillo-${version}.tar.xz"; hash = "sha256-qJu2/s5c6f3R0BpLwUXPfMC5OcV3fMpG3mnC9eNBLPA="; }; nativeBuildInputs = [ cmake ]; buildInputs = [ blas lapack superlu hdf5 ]; cmakeFlags = [ "-DLAPACK_LIBRARY=${lapack}/lib/liblapack${stdenv.hostPlatform.extensions.sharedLibrary}" "-DDETECT_HDF5=ON" ]; patches = [ ./use-unix-config-on-OS-X.patch ]; meta = with lib; { description = "C++ linear algebra library"; homepage = "https://arma.sourceforge.net"; license = licenses.asl20; platforms = platforms.unix; maintainers = with maintainers; [ juliendehos knedlsepp ]; }; }