2021-01-15 22:18:51 +00:00
|
|
|
{ lib, fetchzip, buildDunePackage, ssl, lwt }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
buildDunePackage rec {
|
|
|
|
pname = "lwt_ssl";
|
2020-07-18 16:06:22 +00:00
|
|
|
version = "1.1.3";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
minimumOCamlVersion = "4.02";
|
|
|
|
|
|
|
|
src = fetchzip {
|
|
|
|
url = "https://github.com/aantron/${pname}/archive/${version}.tar.gz";
|
2020-07-18 16:06:22 +00:00
|
|
|
sha256 = "0v417ch5zn0yknj156awa5mrq3mal08pbrvsyribbn63ix6f9y3p";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ ssl lwt ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = "https://github.com/aantron/lwt_ssl";
|
|
|
|
description = "OpenSSL binding with concurrent I/O";
|
2021-01-15 22:18:51 +00:00
|
|
|
license = lib.licenses.lgpl21;
|
|
|
|
maintainers = [ lib.maintainers.vbgl ];
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|