nixpkgs/pkgs/development/ocaml-modules/tls/lwt.nix

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

19 lines
295 B
Nix
Raw Normal View History

{ lib, buildDunePackage, tls, lwt, mirage-crypto-rng-lwt, cmdliner, x509 }:
buildDunePackage rec {
pname = "tls-lwt";
inherit (tls) src meta version;
minimalOCamlVersion = "4.11";
doCheck = true;
propagatedBuildInputs = [
lwt
mirage-crypto-rng-lwt
tls
x509
];
}