hmat-oss 1.8.1 -> 1.9.0 https://repology.org/project/hmat-oss/versions attrpath: hmat-oss Checking auto update branch... No auto update branch exists Old version 1.8.1" not present in master derivation file with contents: { lib , stdenv , fetchFromGitHub , cmake , blas , lapack }: stdenv.mkDerivation rec { pname = "hmat-oss"; version = "1.9.0"; src = fetchFromGitHub { owner = "jeromerobert"; repo = "hmat-oss"; rev = "refs/tags/${version}"; sha256 = "sha256-JW6zghoYnF7NcAuAACgTQoxANEnmwjUAB8jCpof7Ums="; }; cmakeFlags = [ "-DHMAT_GIT_VERSION=OFF" ]; nativeBuildInputs = [ cmake ]; buildInputs = [ blas lapack ]; enableParallelBuilding = true; meta = with lib; { description = "A hierarchical matrix C/C++ library"; homepage = "https://github.com/jeromerobert/hmat-oss"; license = licenses.gpl2; platforms = platforms.unix; maintainers = with maintainers; [ gdinh ]; }; }