tbb: upgrade to 4.2-u5

Signed-off-by: Austin Seipp <aseipp@pobox.com>

+5 -7
+5 -7
pkgs/development/libraries/tbb/default.nix
··· 1 1 { stdenv, fetchurl }: 2 2 3 3 stdenv.mkDerivation { 4 - name = "tbb-4.0-u5"; 4 + name = "tbb-4.2-u5"; 5 5 6 6 src = fetchurl { 7 - url = "http://threadingbuildingblocks.org/uploads/77/187/4.0%20update%205/tbb40_20120613oss_src.tgz"; 8 - sha256 = "aaa98146049e55f6ac969298340eeb49df61395403fcc1480824a4ecd0d46192"; 7 + url = "https://www.threadingbuildingblocks.org/sites/default/files/software_releases/source/tbb42_20140601oss_src.tgz"; 8 + sha256 = "1zjh81hvfxvk1v1li27w1nm3bp6kqv913lxfb2pqa134dibw2pp7"; 9 9 }; 10 10 11 11 checkTarget = "test"; ··· 22 22 enableParallelBuilding = true; 23 23 24 24 meta = { 25 - homepage = "http://threadingbuildingblocks.org/"; 26 25 description = "Intel Thread Building Blocks C++ Library"; 26 + homepage = "http://threadingbuildingblocks.org/"; 27 27 license = "LGPLv3+"; 28 - 29 28 longDescription = '' 30 29 Intel Threading Building Blocks offers a rich and complete approach to 31 30 expressing parallelism in a C++ program. It is a library that helps you ··· 34 33 represents a higher-level, task-based parallelism that abstracts platform 35 34 details and threading mechanisms for scalability and performance. 36 35 ''; 37 - 38 - maintainers = [ stdenv.lib.maintainers.simons ]; 39 36 platforms = stdenv.lib.platforms.linux; 37 + maintainers = with stdenv.lib.maintainers; [ simons thoughtpolice ]; 40 38 }; 41 39 }