Merge pull request #107967 from bhipple/bugfix/tbb

tbb: fix installPhase bug skipping hooks

authored by Benjamin Hipple and committed by GitHub ca345350 dc04eb3e

+4
+4
pkgs/development/libraries/tbb/default.nix
··· 19 patches = stdenv.lib.optional stdenv.hostPlatform.isMusl ./glibc-struct-mallinfo.patch; 20 21 installPhase = '' 22 mkdir -p $out/lib 23 cp "build/"*release*"/"*${stdenv.hostPlatform.extensions.sharedLibrary}* $out/lib/ 24 mv include $out/ 25 rm $out/include/index.html 26 ''; 27 28 enableParallelBuilding = true;
··· 19 patches = stdenv.lib.optional stdenv.hostPlatform.isMusl ./glibc-struct-mallinfo.patch; 20 21 installPhase = '' 22 + runHook preInstall 23 + 24 mkdir -p $out/lib 25 cp "build/"*release*"/"*${stdenv.hostPlatform.extensions.sharedLibrary}* $out/lib/ 26 mv include $out/ 27 rm $out/include/index.html 28 + 29 + runHook postInstall 30 ''; 31 32 enableParallelBuilding = true;