Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / ocaml-modules / hacl-star / default.nix
blob18d3076555849e3def62c76a409aaaa65436aa95
1 { lib, buildDunePackage, hacl-star-raw, zarith, cppo, alcotest, secp256k1-internal, qcheck-core, cstruct }:
4 buildDunePackage {
5   pname = "hacl-star";
7   inherit (hacl-star-raw) version src meta doCheck;
9   minimalOCamlVersion = "4.08";
11   propagatedBuildInputs = [
12     hacl-star-raw
13     zarith
14   ];
16   nativeBuildInputs = [
17     cppo
18   ];
20   checkInputs = [
21     alcotest
22     secp256k1-internal
23     qcheck-core
24     cstruct
25   ];