2021-07-21 07:28:18 +00:00
|
|
|
{ lib, buildDunePackage, hacl-star-raw, zarith, cppo }:
|
|
|
|
|
|
|
|
buildDunePackage {
|
|
|
|
pname = "hacl-star";
|
|
|
|
|
|
|
|
inherit (hacl-star-raw) version src meta doCheck minimalOCamlVersion;
|
|
|
|
|
|
|
|
useDune2 = true;
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
strictDeps = true;
|
2021-07-21 07:28:18 +00:00
|
|
|
}
|