nixpkgs/pkgs/development/ocaml-modules/owl/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
500 B
Nix
Raw Normal View History

2024-01-17 13:25:14 +00:00
{ buildDunePackage
2020-02-27 04:27:01 +00:00
, dune-configurator
, alcotest
2023-05-25 00:29:03 +00:00
, ctypes
2020-02-27 04:27:01 +00:00
, stdio
, openblasCompat
2020-02-27 04:27:01 +00:00
, owl-base
, npy
}:
buildDunePackage rec {
pname = "owl";
2023-02-09 07:10:33 +00:00
inherit (owl-base) version src meta;
checkInputs = [ alcotest ];
2020-11-16 04:19:25 +00:00
buildInputs = [ dune-configurator stdio ];
2020-02-27 04:27:01 +00:00
propagatedBuildInputs = [
2023-05-25 00:29:03 +00:00
ctypes
openblasCompat
owl-base
npy
2020-02-27 04:27:01 +00:00
];
2024-01-17 13:25:14 +00:00
doCheck = false;
# Tests fail with Clang: https://github.com/owlbarn/owl/issues/462
# and with GCC 13: https://github.com/owlbarn/owl/issues/653
}