about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules
diff options
context:
space:
mode:
authorBen Darwin <bcdarwin@gmail.com>2020-04-30 18:15:08 -0400
committerVincent Laporte <vbgl@users.noreply.github.com>2020-05-06 09:21:58 +0200
commitd737f310ff2e7a592d9710f0e628a68630e54290 (patch)
tree5e8fce645575ab2b59b4a6f74204f34635b01263 /pkgs/development/ocaml-modules
parentd7f63096f650b60d48df651b387981662573daca (diff)
downloadnixlib-d737f310ff2e7a592d9710f0e628a68630e54290.tar
nixlib-d737f310ff2e7a592d9710f0e628a68630e54290.tar.gz
nixlib-d737f310ff2e7a592d9710f0e628a68630e54290.tar.bz2
nixlib-d737f310ff2e7a592d9710f0e628a68630e54290.tar.lz
nixlib-d737f310ff2e7a592d9710f0e628a68630e54290.tar.xz
nixlib-d737f310ff2e7a592d9710f0e628a68630e54290.tar.zst
nixlib-d737f310ff2e7a592d9710f0e628a68630e54290.zip
ocamlPackages.owl: unbreak by reversing previous edits
 - package was broken by 1c8aba83 (#83888)
 - fixes #85915
Diffstat (limited to 'pkgs/development/ocaml-modules')
-rw-r--r--pkgs/development/ocaml-modules/owl/default.nix6
1 files changed, 2 insertions, 4 deletions
diff --git a/pkgs/development/ocaml-modules/owl/default.nix b/pkgs/development/ocaml-modules/owl/default.nix
index b306ee9ce6d2..7dd1d525a462 100644
--- a/pkgs/development/ocaml-modules/owl/default.nix
+++ b/pkgs/development/ocaml-modules/owl/default.nix
@@ -6,13 +6,11 @@
 , eigen
 , stdio
 , stdlib-shims
-, openblas, blas, lapack
+, openblasCompat
 , owl-base
 , npy
 }:
 
-assert (!blas.isILP64) && (!lapack.isILP64);
-assert blas.implementation == "openblas" && lapack.implementation == "openblas";
 
 buildDunePackage rec {
   pname = "owl";
@@ -22,7 +20,7 @@ buildDunePackage rec {
   checkInputs = [ alcotest ];
   buildInputs = [ dune-configurator ];
   propagatedBuildInputs = [
-    eigen stdio stdlib-shims openblas owl-base npy
+    eigen stdio stdlib-shims openblasCompat owl-base npy
   ];
 
   doCheck = !stdenv.isDarwin;  # https://github.com/owlbarn/owl/issues/462