2024-07-16 01:40:28 +00:00
|
|
|
{ buildDunePackage
|
2021-01-04 15:11:20 +00:00
|
|
|
, mirage-crypto, mirage-crypto-rng
|
|
|
|
, dune-configurator, async, logs
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildDunePackage {
|
|
|
|
pname = "mirage-crypto-rng-async";
|
|
|
|
|
2022-09-13 12:14:19 +00:00
|
|
|
inherit (mirage-crypto) version src;
|
2021-01-04 15:11:20 +00:00
|
|
|
|
2023-03-09 17:19:14 +00:00
|
|
|
duneVersion = "3";
|
|
|
|
|
2022-02-22 09:59:04 +00:00
|
|
|
buildInputs = [
|
2021-01-04 15:11:20 +00:00
|
|
|
dune-configurator
|
|
|
|
];
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
async
|
|
|
|
logs
|
|
|
|
mirage-crypto
|
|
|
|
mirage-crypto-rng
|
|
|
|
];
|
|
|
|
|
2022-02-22 09:59:04 +00:00
|
|
|
strictDeps = true;
|
|
|
|
|
2021-01-04 15:11:20 +00:00
|
|
|
meta = mirage-crypto.meta // {
|
|
|
|
description = "Feed the entropy source in an Async-friendly way";
|
|
|
|
};
|
|
|
|
}
|