8e65f7f0cc
GitOrigin-RevId: 062a0c5437b68f950b081bbfc8a699d57a4ee026
20 lines
318 B
Nix
20 lines
318 B
Nix
{ 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
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
cppo
|
|
];
|
|
|
|
strictDeps = true;
|
|
}
|