2023-05-24 13:37:59 +00:00
|
|
|
{ lib, buildDunePackage, hacl-star-raw, zarith, cppo, alcotest, secp256k1-internal, qcheck-core, cstruct }:
|
|
|
|
|
2021-07-21 07:28:18 +00:00
|
|
|
|
|
|
|
buildDunePackage {
|
|
|
|
pname = "hacl-star";
|
|
|
|
|
2023-11-16 04:20:00 +00:00
|
|
|
inherit (hacl-star-raw) version src meta doCheck;
|
2021-07-21 07:28:18 +00:00
|
|
|
|
2023-11-16 04:20:00 +00:00
|
|
|
minimalOCamlVersion = "4.08";
|
2021-07-21 07:28:18 +00:00
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
hacl-star-raw
|
|
|
|
zarith
|
|
|
|
];
|
|
|
|
|
2022-03-05 16:20:37 +00:00
|
|
|
nativeBuildInputs = [
|
2021-07-21 07:28:18 +00:00
|
|
|
cppo
|
|
|
|
];
|
2022-03-05 16:20:37 +00:00
|
|
|
|
2023-05-24 13:37:59 +00:00
|
|
|
checkInputs = [
|
|
|
|
alcotest
|
|
|
|
secp256k1-internal
|
|
|
|
qcheck-core
|
|
|
|
cstruct
|
|
|
|
];
|
2021-07-21 07:28:18 +00:00
|
|
|
}
|