2021-07-19 12:01:44 +02: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-02-22 10:59:04 +01:00
|
|
|
nativeBuildInputs = [
|
2021-07-19 12:01:44 +02:00
|
|
|
cppo
|
|
|
|
];
|
2022-02-22 10:59:04 +01:00
|
|
|
|
|
|
|
strictDeps = true;
|
2021-07-19 12:01:44 +02:00
|
|
|
}
|