pcl: mark as broken on darwin

/nix/store/8z1vw2lkj3d5333lppbgbl9fbkk0n65p-eigen-3.4.0/include/eigen3/Eigen/Core:70:10:
fatal error: 'omp.h' file not found
This commit is contained in:
Gaetan Lepage 2025-02-14 13:53:44 +01:00
parent dd356dbd45
commit 40f5f68c88

View File

@ -84,5 +84,9 @@ stdenv.mkDerivation (finalAttrs: {
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ GaetanLepage ];
platforms = with lib.platforms; linux ++ darwin;
badPlatforms = [
# fatal error: 'omp.h' file not found
lib.systems.inspect.patterns.isDarwin
];
};
})