Merge: zmap: 4.2.0 -> 4.3.1 (#364578)
[NixPkgs.git] / pkgs / development / ocaml-modules / mirage-crypto / pk.nix
blob6d637e0259056ae86c1f6856d6baf795c44390b0
2   buildDunePackage,
3   ohex,
4   ounit2,
5   randomconv,
6   mirage-crypto,
7   mirage-crypto-rng,
8   sexplib0,
9   zarith,
10   gmp,
13 buildDunePackage rec {
14   pname = "mirage-crypto-pk";
16   inherit (mirage-crypto) version src;
18   buildInputs = [ gmp ];
19   propagatedBuildInputs = [
20     mirage-crypto
21     mirage-crypto-rng
22     zarith
23     sexplib0
24   ];
26   doCheck = true;
27   checkInputs = [
28     ohex
29     ounit2
30     randomconv
31   ];
33   meta = mirage-crypto.meta // {
34     description = "Simple public-key cryptography for the modern age";
35   };