evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / ocaml-modules / mirage-crypto / pk.nix
blob3b647e90b37bfe4b1779ee5ab7935a211eab21df
1 { buildDunePackage, ohex, ounit2, randomconv, mirage-crypto, mirage-crypto-rng
2 , sexplib0, zarith, gmp }:
4 buildDunePackage rec {
5   pname = "mirage-crypto-pk";
7   inherit (mirage-crypto) version src;
9   buildInputs = [ gmp ];
10   propagatedBuildInputs = [ mirage-crypto mirage-crypto-rng
11                             zarith sexplib0 ];
13   doCheck = true;
14   checkInputs = [ ohex ounit2 randomconv ];
16   meta = mirage-crypto.meta // {
17     description = "Simple public-key cryptography for the modern age";
18   };