43 lines
1.4 KiB
Nix
43 lines
1.4 KiB
Nix
{ stdenv, fetchurl }:
|
|
|
|
let
|
|
SHLIB_EXT = if stdenv.isDarwin then "dylib" else "so";
|
|
in
|
|
stdenv.mkDerivation {
|
|
name = "tbb-4.4-u2";
|
|
|
|
src = fetchurl {
|
|
url = "https://www.threadingbuildingblocks.org/sites/default/files/software_releases/source/tbb44_20151115oss_src.tgz";
|
|
sha256 = "1fvprkjdxj7529hr1qkzkxkk18mx6zllrpiwglq4k3y1hpyc9m9x";
|
|
};
|
|
|
|
checkTarget = "test";
|
|
doCheck = false;
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/{lib,share/doc}
|
|
cp "build/"*release*"/"*${SHLIB_EXT}* $out/lib/
|
|
mv include $out/
|
|
rm $out/include/index.html
|
|
mv doc/html $out/share/doc/tbb
|
|
'';
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = {
|
|
description = "Intel Thread Building Blocks C++ Library";
|
|
homepage = "http://threadingbuildingblocks.org/";
|
|
license = stdenv.lib.licenses.lgpl3Plus;
|
|
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 stdenv.lib.platforms; linux ++ darwin;
|
|
maintainers = with stdenv.lib.maintainers; [ peti thoughtpolice ];
|
|
};
|
|
}
|