mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-19 18:44:13 +00:00
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
|
|
}
|