pcl: fix build on darwin (#385701)

authored by Gaétan Lepage and committed by GitHub 7d4a1a9f 9c0711a5

+6 -5
+6 -5
pkgs/by-name/pc/pcl/package.nix
··· 14 14 libXt, 15 15 libpcap, 16 16 libusb1, 17 + llvmPackages, 17 18 18 19 # nativeBuildInputs 19 20 boost, ··· 58 59 libpcap 59 60 libsForQt5.qtbase 60 61 libusb1 62 + llvmPackages.openmp 61 63 ]; 62 64 63 65 propagatedBuildInputs = [ ··· 82 84 description = "Open project for 2D/3D image and point cloud processing"; 83 85 changelog = "https://github.com/PointCloudLibrary/pcl/blob/pcl-${finalAttrs.version}/CHANGES.md"; 84 86 license = lib.licenses.bsd3; 85 - maintainers = with lib.maintainers; [ GaetanLepage ]; 87 + maintainers = with lib.maintainers; [ 88 + GaetanLepage 89 + usertam 90 + ]; 86 91 platforms = with lib.platforms; linux ++ darwin; 87 - badPlatforms = [ 88 - # fatal error: 'omp.h' file not found 89 - lib.systems.inspect.patterns.isDarwin 90 - ]; 91 92 }; 92 93 })