hmat-oss: init at 1.7.1
This commit is contained in:
parent
48bb729ba5
commit
1af6f5a222
2 changed files with 39 additions and 0 deletions
37
pkgs/development/libraries/hmat-oss/default.nix
Normal file
37
pkgs/development/libraries/hmat-oss/default.nix
Normal file
|
@ -0,0 +1,37 @@
|
|||
{ lib
|
||||
, stdenv
|
||||
, fetchFromGitHub
|
||||
, cmake
|
||||
, blas
|
||||
, lapack
|
||||
}:
|
||||
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "hmat-oss";
|
||||
version = "1.7.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "jeromerobert";
|
||||
repo = "hmat-oss";
|
||||
rev = "refs/tags/${version}";
|
||||
sha256 = "sha256-Xc8AbeyEtM6R5I4HdgF4XR5/b8ZYBOv34kY1xrYk/Jw=";
|
||||
};
|
||||
|
||||
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 ];
|
||||
};
|
||||
}
|
|
@ -18479,6 +18479,8 @@ with pkgs;
|
|||
autoreconfHook = buildPackages.autoreconfHook269;
|
||||
};
|
||||
|
||||
hmat-oss = callPackage ../development/libraries/hmat-oss { };
|
||||
|
||||
hound = callPackage ../development/tools/misc/hound { };
|
||||
|
||||
hpx = callPackage ../development/libraries/hpx {
|
||||
|
|
Loading…
Reference in a new issue