1{ lib, fetchurl, buildDunePackage, ssl, lwt }:
2
3buildDunePackage rec {
4 pname = "lwt_ssl";
5 version = "1.2.0";
6
7 duneVersion = "3";
8
9 src = fetchurl {
10 url = "https://github.com/ocsigen/lwt_ssl/releases/download/${version}/lwt_ssl-${version}.tbz";
11 hash = "sha256-swIK0nrs83fhw/J0Cgizbcu6mR+EMGZRE1dBBUiImnc=";
12 };
13
14 propagatedBuildInputs = [ ssl lwt ];
15
16 meta = {
17 homepage = "https://github.com/aantron/lwt_ssl";
18 description = "OpenSSL binding with concurrent I/O";
19 license = lib.licenses.lgpl21;
20 maintainers = [ lib.maintainers.vbgl ];
21 };
22}