0d9fc34957
GitOrigin-RevId: 5ed481943351e9fd354aeb557679624224de38d5
21 lines
370 B
Nix
21 lines
370 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";
|
|
duneVersion = "3";
|
|
|
|
doCheck = true;
|
|
|
|
propagatedBuildInputs = [
|
|
async
|
|
core
|
|
cstruct
|
|
cstruct-async
|
|
mirage-crypto-rng-async
|
|
tls
|
|
];
|
|
}
|