nixpkgs/pkgs/development/ocaml-modules/mirage-crypto/pk.nix
Vincent Laporte c8ea8712c7
ocamlPackages.eqaf: 0.9 → 0.10
ocamlPackages.eqaf-cstruct: init at 0.10
2024-06-24 09:46:02 +02:00

24 lines
636 B
Nix

{ buildDunePackage, ounit2, randomconv, mirage-crypto, mirage-crypto-rng
, cstruct, sexplib0, zarith, eqaf-cstruct, gmp }:
buildDunePackage rec {
pname = "mirage-crypto-pk";
inherit (mirage-crypto) version src;
postPatch = ''
substituteInPlace pk/dune --replace-warn eqaf.cstruct eqaf-cstruct
'';
buildInputs = [ gmp ];
propagatedBuildInputs = [ cstruct mirage-crypto mirage-crypto-rng
zarith eqaf-cstruct sexplib0 ];
doCheck = true;
checkInputs = [ ounit2 randomconv ];
meta = mirage-crypto.meta // {
description = "Simple public-key cryptography for the modern age";
};
}