about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules
diff options
context:
space:
mode:
authorBen Darwin <bcdarwin@gmail.com>2019-12-06 19:19:05 -0500
committerBen Darwin <bcdarwin@gmail.com>2019-12-09 11:00:11 -0500
commitbfe5d1cc96b755a491499bf43db8de5a3ba41346 (patch)
tree75c4480c34eabf53b780565ca37878127adb3366 /pkgs/development/ocaml-modules
parent88f24e842b9c3acd347410d17c2211551a20df8a (diff)
downloadnixlib-bfe5d1cc96b755a491499bf43db8de5a3ba41346.tar
nixlib-bfe5d1cc96b755a491499bf43db8de5a3ba41346.tar.gz
nixlib-bfe5d1cc96b755a491499bf43db8de5a3ba41346.tar.bz2
nixlib-bfe5d1cc96b755a491499bf43db8de5a3ba41346.tar.lz
nixlib-bfe5d1cc96b755a491499bf43db8de5a3ba41346.tar.xz
nixlib-bfe5d1cc96b755a491499bf43db8de5a3ba41346.tar.zst
nixlib-bfe5d1cc96b755a491499bf43db8de5a3ba41346.zip
ocamlPackages.owl: 0.7.1 -> 0.7.2
- also enable tests (except on OSX) due to upstream fixes
Diffstat (limited to 'pkgs/development/ocaml-modules')
-rw-r--r--pkgs/development/ocaml-modules/owl-base/default.nix4
-rw-r--r--pkgs/development/ocaml-modules/owl/default.nix2
2 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/ocaml-modules/owl-base/default.nix b/pkgs/development/ocaml-modules/owl-base/default.nix
index efdd2a28412e..12cd54363085 100644
--- a/pkgs/development/ocaml-modules/owl-base/default.nix
+++ b/pkgs/development/ocaml-modules/owl-base/default.nix
@@ -2,13 +2,13 @@
 
 buildDunePackage rec {
   pname = "owl-base";
-  version = "0.7.1";
+  version = "0.7.2";
 
   src = fetchFromGitHub {
     owner  = "owlbarn";
     repo   = "owl";
     rev    = version;
-    sha256 = "1v4jfn3w18zq188f9gskx9ffja3xx59j2mgrw6azp8lsbqixg5xk";
+    sha256 = "1a2lbhywrb3bmm4k48wwbp6iszpd3aj1f23v10i78cbqm5slk6dj";
   };
 
   propagatedBuildInputs = [ stdlib-shims ];
diff --git a/pkgs/development/ocaml-modules/owl/default.nix b/pkgs/development/ocaml-modules/owl/default.nix
index eedfdba34edd..0cc1c1db42a4 100644
--- a/pkgs/development/ocaml-modules/owl/default.nix
+++ b/pkgs/development/ocaml-modules/owl/default.nix
@@ -10,5 +10,5 @@ buildDunePackage rec {
   checkInputs = [ alcotest ];
   propagatedBuildInputs = [ eigen stdio stdlib-shims openblasCompat owl-base ];
 
-  # tests not enabled for now due to owlbarn/owl/issues/460
+  doCheck = !stdenv.isDarwin;  # https://github.com/owlbarn/owl/issues/462
 }