mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
412450dcd7
New package: ocamlPackages.mirage-crypto-rng-async
26 lines
477 B
Nix
26 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";
|
|
};
|
|
}
|