librepcb: 1.1.0 -> 1.2.0
[NixPkgs.git] / pkgs / by-name / hm / hmat-oss / package.nix
blob0981ff2f821402ea8202771be90f055563ecfca0
1 { lib
2 , stdenv
3 , fetchFromGitHub
4 , cmake
5 , blas
6 , lapack
7 }:
10 stdenv.mkDerivation rec {
11   pname = "hmat-oss";
12   version = "1.10.0";
14   src = fetchFromGitHub {
15     owner = "jeromerobert";
16     repo = "hmat-oss";
17     rev = "refs/tags/${version}";
18     sha256 = "sha256-GnFlvZCEzSCcBVLjFWLe+AKXVA6UMs/gycrOJ2TBqrE=";
19   };
21   cmakeFlags = [
22     "-DHMAT_GIT_VERSION=OFF"
23   ];
25   nativeBuildInputs = [ cmake ];
26   buildInputs = [ blas lapack ];
28   enableParallelBuilding = true;
30   meta = with lib; {
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 ];
36   };