about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/ocaml-modules/mirage-crypto/pk.nix
blob: d6c4d494510dadcd0ed63d5343fc9a75cd2ab3f3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ 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";
  };
}