nixpkgs-odroid-hc4/pkgs/development/ocaml-modules/hacl-star/default.nix
2025-12-20 09:59:59 +11:00

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;
}