Merge pull request #114120 from SuperSandro2000/vtk-darwin

vtk_{7,8}: mark broken on darwin
This commit is contained in:
Domen Kožar
2021-02-23 15:53:30 +01:00
committed by GitHub

View File

@@ -93,5 +93,7 @@ in stdenv.mkDerivation rec {
license = licenses.bsd3;
maintainers = with maintainers; [ knedlsepp tfmoraes lheckemann ];
platforms = with platforms; unix;
# /nix/store/xxxxxxx-apple-framework-Security/Library/Frameworks/Security.framework/Headers/Authorization.h:192:7: error: variably modified 'bytes' at file scope
broken = if stdenv.isDarwin && (majorVersion == 7 || majorVersion == 8) then true else false;
};
}