2021-01-05 17:05:55 +00:00
|
|
|
{ lib, buildDunePackage
|
|
|
|
, mirage-crypto, mirage-crypto-rng
|
|
|
|
, dune-configurator, async, logs
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildDunePackage {
|
|
|
|
pname = "mirage-crypto-rng-async";
|
|
|
|
|
2022-09-22 12:36:57 +00:00
|
|
|
inherit (mirage-crypto) version src;
|
2021-01-05 17:05:55 +00:00
|
|
|
|
2022-03-05 16:20:37 +00:00
|
|
|
buildInputs = [
|
2021-01-05 17:05:55 +00:00
|
|
|
dune-configurator
|
|
|
|
];
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
async
|
|
|
|
logs
|
|
|
|
mirage-crypto
|
|
|
|
mirage-crypto-rng
|
|
|
|
];
|
|
|
|
|
2022-03-05 16:20:37 +00:00
|
|
|
strictDeps = true;
|
|
|
|
|
2021-01-05 17:05:55 +00:00
|
|
|
meta = mirage-crypto.meta // {
|
|
|
|
description = "Feed the entropy source in an Async-friendly way";
|
|
|
|
};
|
|
|
|
}
|