mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-29 16:24:10 +00:00
blaze: init at 3.8.1
This commit is contained in:
parent
a008d68326
commit
22d003cc38
35
pkgs/development/libraries/blaze/default.nix
Normal file
35
pkgs/development/libraries/blaze/default.nix
Normal 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;
|
||||
};
|
||||
})
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user