My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/ocaml-modules/tls/async.nix

21 lines
368 B

{ lib, buildDunePackage, tls, async, cstruct-async, core, cstruct, mirage-crypto-rng-async }:
buildDunePackage rec {
pname = "tls-async";
inherit (tls) src meta version;
minimumOCamlVersion = "4.08";
useDune2 = true;
doCheck = true;
propagatedBuildInputs = [
async
core
cstruct
cstruct-async
mirage-crypto-rng-async
tls
];
}