llvmPackages_12: Create subdirectories for the last two packages

For consistency. Now all packages will have their own subdirectory
(continuation of 781e69d19c4).

+2 -2
pkgs/development/compilers/llvm/12/bintools.nix pkgs/development/compilers/llvm/12/bintools/default.nix
+2 -2
pkgs/development/compilers/llvm/12/default.nix
··· 108 108 # doesn’t support like LLVM. Probably we should move to some other 109 109 # file. 110 110 111 - bintools = callPackage ./bintools.nix {}; 111 + bintools = callPackage ./bintools {}; 112 112 113 113 lldClang = wrapCCWith rec { 114 114 cc = tools.clang-unwrapped; ··· 203 203 libunwind = libraries.libunwind; 204 204 })); 205 205 206 - openmp = callPackage ./openmp.nix { inherit llvm_meta; }; 206 + openmp = callPackage ./openmp { inherit llvm_meta; }; 207 207 208 208 libunwind = callPackage ./libunwind ({ inherit llvm_meta; } // 209 209 (lib.optionalAttrs (stdenv.hostPlatform.useLLVM or false) {
pkgs/development/compilers/llvm/12/openmp.nix pkgs/development/compilers/llvm/12/openmp/default.nix