15 lines
367 B
Nix
15 lines
367 B
Nix
{ stdenv, buildDunePackage, fetchFromGitHub, alcotest
|
|
, eigen, stdio, stdlib-shims, openblasCompat, owl-base
|
|
}:
|
|
|
|
buildDunePackage rec {
|
|
pname = "owl";
|
|
|
|
inherit (owl-base) version src meta;
|
|
|
|
checkInputs = [ alcotest ];
|
|
propagatedBuildInputs = [ eigen stdio stdlib-shims openblasCompat owl-base ];
|
|
|
|
# tests not enabled for now due to owlbarn/owl/issues/460
|
|
}
|