10 stdenv.mkDerivation rec {
14 src = fetchFromGitHub {
15 owner = "jeromerobert";
17 rev = "refs/tags/${version}";
18 sha256 = "sha256-GnFlvZCEzSCcBVLjFWLe+AKXVA6UMs/gycrOJ2TBqrE=";
22 "-DHMAT_GIT_VERSION=OFF"
25 nativeBuildInputs = [ cmake ];
26 buildInputs = [ blas lapack ];
28 enableParallelBuilding = true;
31 description = "Hierarchical matrix C/C++ library";
32 homepage = "https://github.com/jeromerobert/hmat-oss";
33 license = licenses.gpl2;
34 platforms = platforms.unix;
35 maintainers = with maintainers; [ gdinh ];