30 lines
386 B
Nix
30 lines
386 B
Nix
{
|
|
buildDunePackage,
|
|
dune-configurator,
|
|
alcotest,
|
|
ctypes,
|
|
stdio,
|
|
openblasCompat,
|
|
owl-base,
|
|
npy,
|
|
}:
|
|
|
|
buildDunePackage rec {
|
|
pname = "owl";
|
|
|
|
inherit (owl-base) version src meta;
|
|
|
|
checkInputs = [ alcotest ];
|
|
buildInputs = [
|
|
dune-configurator
|
|
stdio
|
|
];
|
|
propagatedBuildInputs = [
|
|
ctypes
|
|
openblasCompat
|
|
owl-base
|
|
npy
|
|
];
|
|
|
|
doCheck = true;
|
|
}
|