nixpkgs-suyu/pkgs/development/ocaml-modules/tls/async.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
368 B
Nix
Raw Normal View History

{ lib, buildDunePackage, tls, async, cstruct-async, core, cstruct, mirage-crypto-rng-async }:
2021-06-07 20:20:56 +02:00
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
];
}