diff --git a/pkgs/development/libraries/opencv/3.x.nix b/pkgs/development/libraries/opencv/3.x.nix index eae31df4796..eed77b9113a 100644 --- a/pkgs/development/libraries/opencv/3.x.nix +++ b/pkgs/development/libraries/opencv/3.x.nix @@ -18,6 +18,10 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ cmake pkgconfig ]; + # TODO: Pre-download IPP so that OpenCV doesn't try to download it itself + # (which fails). + cmakeFlags = [ "-DWITH_IPP=OFF" ]; + enableParallelBuilding = true; meta = {