depot/third_party/nixpkgs/pkgs/development/ocaml-modules/hacl-star/default.nix
Default email 94427deb9d Project import generated by Copybara.
GitOrigin-RevId: f91ee3065de91a3531329a674a45ddcb3467a650
2023-05-24 16:37:59 +03:00

26 lines
439 B
Nix

{ lib, buildDunePackage, hacl-star-raw, zarith, cppo, alcotest, secp256k1-internal, qcheck-core, cstruct }:
buildDunePackage {
pname = "hacl-star";
inherit (hacl-star-raw) version src meta doCheck minimalOCamlVersion;
duneVersion = "3";
propagatedBuildInputs = [
hacl-star-raw
zarith
];
nativeBuildInputs = [
cppo
];
checkInputs = [
alcotest
secp256k1-internal
qcheck-core
cstruct
];
}