mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 23:43:30 +00:00
36 lines
712 B
Nix
36 lines
712 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromBitbucket
|
|
, cmake
|
|
, blas
|
|
, lapack-reference
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "blaze";
|
|
version = "3.8.2";
|
|
|
|
src = fetchFromBitbucket {
|
|
owner = "blaze-lib";
|
|
repo = finalAttrs.pname;
|
|
rev = "v${finalAttrs.version}";
|
|
hash = "sha256-Jl9ZWFqBvLgQwCoMNX3g7z02yc7oYx+d6mbyLBzBJOs=";
|
|
};
|
|
|
|
strictDeps = true;
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
buildInputs = [
|
|
blas
|
|
lapack-reference
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "high performance C++ math library";
|
|
homepage = "https://bitbucket.org/blaze-lib/blaze";
|
|
license = with licenses; [ bsd3 ];
|
|
maintainers = with maintainers; [ Madouura ];
|
|
platforms = platforms.linux;
|
|
};
|
|
})
|