summary refs log blame commit diff
path: root/pkgs/development/ocaml-modules/mirage-crypto/pk.nix
blob: d6c4d494510dadcd0ed63d5343fc9a75cd2ab3f3 (plain) (tree)


















                                                                        
{ buildDunePackage, ounit, randomconv, mirage-crypto, mirage-crypto-rng
, cstruct, sexplib, ppx_sexp_conv, zarith, eqaf, rresult, gmp }:

buildDunePackage {
  pname = "mirage-crypto-pk";

  inherit (mirage-crypto) version src useDune2 minimumOCamlVersion;

  buildInputs = [ gmp ];
  propagatedBuildInputs = [ cstruct mirage-crypto mirage-crypto-rng
                            zarith eqaf rresult sexplib ppx_sexp_conv ];

  doCheck = true;
  checkInputs = [ ounit randomconv ];

  meta = mirage-crypto.meta // {
    description = "Simple public-key cryptography for the modern age";
  };
}