3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #192610 from superherointj/broken-openvino

openvino: mark broken for linux-x86_64
This commit is contained in:
figsoda 2022-09-23 11:42:21 -04:00 committed by GitHub
commit d263191066
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -130,7 +130,8 @@ stdenv.mkDerivation rec {
homepage = "https://docs.openvinotoolkit.org/";
license = with licenses; [ asl20 ];
platforms = platforms.all;
broken = stdenv.isDarwin; # Cannot find macos sdk
broken = (stdenv.isLinux && stdenv.isx86_64) # at 2022-09-23
|| stdenv.isDarwin; # Cannot find macos sdk
maintainers = with maintainers; [ tfmoraes ];
};
}