blaze: init at 3.8.1

This commit is contained in:
Madoura 2022-12-20 02:44:14 -06:00
parent a008d68326
commit 22d003cc38
No known key found for this signature in database
GPG Key ID: 3201136B3DB072F9
2 changed files with 37 additions and 0 deletions

View File

@ -0,0 +1,35 @@
{ lib
, stdenv
, fetchFromBitbucket
, cmake
, blas
, lapack-reference
}:
stdenv.mkDerivation (finalAttrs: {
pname = "blaze";
version = "3.8.1";
src = fetchFromBitbucket {
owner = "blaze-lib";
repo = finalAttrs.pname;
rev = "v${finalAttrs.version}";
hash = "sha256-fe6J0aquk4j+b11Sq+ihagWA/LMTYnAgIHbaDCZacP0=";
};
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;
};
})

View File

@ -15253,6 +15253,8 @@ with pkgs;
stdenv = llvmPackages_9.stdenv;
};
blaze = callPackage ../development/libraries/blaze { };
pony-corral = callPackage ../development/compilers/ponyc/pony-corral.nix { };
qbe = callPackage ../development/compilers/qbe { };