summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/owl/default.nix
blob: 95d4f6da704c05639d2e1c913e8dc559f8d15a23 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ stdenv, buildDunePackage, fetchFromGitHub, alcotest
, eigen, stdio, stdlib-shims, openblasCompat, owl-base
}:

buildDunePackage rec {
  pname = "owl";

  inherit (owl-base) version src meta;

  buildInputs = [ eigen ];
  checkInputs = [ alcotest ];
  propagatedBuildInputs = [ stdio stdlib-shims openblasCompat owl-base ];

  # tests not enabled for now due to owlbarn/owl/issues/460
}