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
commit 744cacc5a4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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;
};
}