ffc78d3539
GitOrigin-RevId: d9dba88d08a9cdf483c3d45f0d7220cf97a4ce64
25 lines
477 B
Nix
25 lines
477 B
Nix
{ lib, buildDunePackage
|
|
, mirage-crypto, mirage-crypto-rng
|
|
, dune-configurator, async, logs
|
|
}:
|
|
|
|
buildDunePackage {
|
|
pname = "mirage-crypto-rng-async";
|
|
|
|
inherit (mirage-crypto) useDune2 version minimumOCamlVersion src;
|
|
|
|
nativeBuildInputs = [
|
|
dune-configurator
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
async
|
|
logs
|
|
mirage-crypto
|
|
mirage-crypto-rng
|
|
];
|
|
|
|
meta = mirage-crypto.meta // {
|
|
description = "Feed the entropy source in an Async-friendly way";
|
|
};
|
|
}
|