Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / ocaml-modules / lwt_ssl / default.nix
blob173094aacb84ccd37bdbc4b046217dc8a4c87b2f
1 { lib, fetchzip, buildDunePackage, ssl, lwt }:
3 buildDunePackage rec {
4   pname = "lwt_ssl";
5   version = "1.1.3";
7   minimumOCamlVersion = "4.02";
8   useDune2 = true;
10   src = fetchzip {
11     url = "https://github.com/aantron/${pname}/archive/${version}.tar.gz";
12     sha256 = "0v417ch5zn0yknj156awa5mrq3mal08pbrvsyribbn63ix6f9y3p";
13   };
15   propagatedBuildInputs = [ ssl lwt ];
17   meta = {
18     homepage = "https://github.com/aantron/lwt_ssl";
19     description = "OpenSSL binding with concurrent I/O";
20     license = lib.licenses.lgpl21;
21     maintainers = [ lib.maintainers.vbgl ];
22   };