opencv3: unbreak build (set "-DWITH_IPP=OFF")

OpenCV tries to download IPP itself at build time. That doesn't work
well with nix.
This commit is contained in:
Bjørn Forsman 2015-09-01 22:20:38 +02:00
parent f5615752ae
commit fe85ba5806

View file

@ -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 = {