mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 11:32:03 +00:00
16 lines
388 B
Nix
16 lines
388 B
Nix
{ 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
|
|
}
|