Skip to content

Commit

Permalink
opencv3, opencv4: use openblasCompat
Browse files Browse the repository at this point in the history
without master's fix in #83888, opencv3 & opencv4 end up with an 8-byte
openblas, which it does work with. however this causes the python
bindings to also end up with an 8-byte openblas, which numpy doesn't work
with. force 4-byte openblas for opencv.
  • Loading branch information
risicle authored and FRidh committed Nov 21, 2020
1 parent fdcd102 commit 8fdb672
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -13655,6 +13655,7 @@ in

opencv3 = callPackage ../development/libraries/opencv/3.x.nix {
inherit (darwin.apple_sdk.frameworks) AVFoundation Cocoa VideoDecodeAcceleration;
openblas = openblasCompat;
};

opencv3WithoutCuda = opencv3.override {
Expand All @@ -13663,6 +13664,7 @@ in

opencv4 = callPackage ../development/libraries/opencv/4.x.nix {
inherit (darwin.apple_sdk.frameworks) AVFoundation Cocoa VideoDecodeAcceleration;
openblas = openblasCompat;
};

openexr = callPackage ../development/libraries/openexr { };
Expand Down

0 comments on commit 8fdb672

Please sign in to comment.