02cf88bb76
GitOrigin-RevId: c4a0efdd5a728e20791b8d8d2f26f90ac228ee8d
20 lines
349 B
Nix
20 lines
349 B
Nix
{ lib, buildDunePackage, tls, async, cstruct-async, core, cstruct, mirage-crypto-rng-async }:
|
|
|
|
buildDunePackage rec {
|
|
pname = "tls-async";
|
|
|
|
inherit (tls) src meta version;
|
|
|
|
minimalOCamlVersion = "4.11";
|
|
|
|
doCheck = true;
|
|
|
|
propagatedBuildInputs = [
|
|
async
|
|
core
|
|
cstruct
|
|
cstruct-async
|
|
mirage-crypto-rng-async
|
|
tls
|
|
];
|
|
}
|