mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
ef3d467d3d
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/tbb/versions
46 lines
1.6 KiB
Nix
46 lines
1.6 KiB
Nix
{ stdenv, fetchFromGitHub, compiler ? if stdenv.cc.isClang then "clang" else null, stdver ? null }:
|
|
|
|
with stdenv.lib; stdenv.mkDerivation rec {
|
|
name = "tbb-${version}";
|
|
version = "2019_U8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "01org";
|
|
repo = "tbb";
|
|
rev = version;
|
|
sha256 = "0z0kh1a5g28gckcxlv3x7qqskh5fsl8knf2ypbbvk7z9ln9k3wfq";
|
|
};
|
|
|
|
makeFlags = concatStringsSep " " (
|
|
optional (compiler != null) "compiler=${compiler}" ++
|
|
optional (stdver != null) "stdver=${stdver}"
|
|
);
|
|
|
|
patches = stdenv.lib.optional stdenv.hostPlatform.isMusl ./glibc-struct-mallinfo.patch;
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/lib
|
|
cp "build/"*release*"/"*${stdenv.hostPlatform.extensions.sharedLibrary}* $out/lib/
|
|
mv include $out/
|
|
rm $out/include/index.html
|
|
'';
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = {
|
|
description = "Intel Thread Building Blocks C++ Library";
|
|
homepage = "http://threadingbuildingblocks.org/";
|
|
license = licenses.asl20;
|
|
longDescription = ''
|
|
Intel Threading Building Blocks offers a rich and complete approach to
|
|
expressing parallelism in a C++ program. It is a library that helps you
|
|
take advantage of multi-core processor performance without having to be a
|
|
threading expert. Intel TBB is not just a threads-replacement library. It
|
|
represents a higher-level, task-based parallelism that abstracts platform
|
|
details and threading mechanisms for scalability and performance.
|
|
'';
|
|
platforms = with platforms; linux ++ darwin;
|
|
maintainers = with maintainers; [ thoughtpolice dizfer ];
|
|
};
|
|
}
|