a0cb138ada
GitOrigin-RevId: a100acd7bbf105915b0004427802286c37738fef
21 lines
557 B
Nix
21 lines
557 B
Nix
{ buildDunePackage, ounit2, randomconv, mirage-crypto, mirage-crypto-rng
|
|
, cstruct, sexplib0, zarith, eqaf, gmp }:
|
|
|
|
buildDunePackage rec {
|
|
pname = "mirage-crypto-pk";
|
|
|
|
inherit (mirage-crypto) version src;
|
|
|
|
buildInputs = [ gmp ];
|
|
propagatedBuildInputs = [ cstruct mirage-crypto mirage-crypto-rng
|
|
zarith eqaf sexplib0 ];
|
|
|
|
strictDeps = !doCheck;
|
|
|
|
doCheck = true;
|
|
nativeCheckInputs = [ ounit2 randomconv ];
|
|
|
|
meta = mirage-crypto.meta // {
|
|
description = "Simple public-key cryptography for the modern age";
|
|
};
|
|
}
|