haskell-opencv: ensure that the underlying C++ library has contrib code enabled

0335b93284 (commitcomment-22638850)
This commit is contained in:
Peter Simons 2017-06-22 15:34:45 +02:00
parent bc20886345
commit d83fb640db

View File

@ -461,4 +461,7 @@ self: super: builtins.intersectAttrs super {
liquid-fixpoint = disableSharedExecutables super.liquid-fixpoint;
liquidhaskell = dontCheck (disableSharedExecutables super.liquidhaskell);
# Haskell OpenCV bindings need contrib code enabled in the C++ library.
opencv = super.opencv.override { opencv3 = pkgs.opencv3.override { enableContrib = true; }; };
}