ocamlPackages.{owl-base,owl}: init at 0.7.1

This commit is contained in:
Ben Darwin
2019-11-29 17:22:45 +00:00
committed by Vincent Laporte
parent 777efe8425
commit d016a507ea
3 changed files with 44 additions and 0 deletions
@@ -0,0 +1,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
}