about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/owl/default.nix
blob: 22aa70d9ff1c5a9a6b16db0f1351b3950cb11030 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{ buildDunePackage
, dune-configurator
, fetchFromGitHub
, alcotest
, ctypes
, stdio
, openblasCompat
, owl-base
, npy
}:


buildDunePackage rec {
  pname = "owl";

  inherit (owl-base) version src meta;

  checkInputs = [ alcotest ];
  buildInputs = [ dune-configurator stdio ];
  propagatedBuildInputs = [
    ctypes
    openblasCompat
    owl-base
    npy
  ];

  doCheck = false;
  # Tests fail with Clang: https://github.com/owlbarn/owl/issues/462
  # and with GCC 13: https://github.com/owlbarn/owl/issues/653
}