nixpkgs/pkgs/development/ocaml-modules/lwt_ssl/default.nix

24 lines
582 B
Nix
Raw Normal View History

{ lib, fetchzip, buildDunePackage, ssl, lwt }:
2018-02-02 06:39:50 +00:00
buildDunePackage rec {
pname = "lwt_ssl";
2020-07-05 19:39:47 +00:00
version = "1.1.3";
minimumOCamlVersion = "4.02";
2021-02-03 19:45:18 +00:00
useDune2 = true;
2018-02-02 06:39:50 +00:00
src = fetchzip {
url = "https://github.com/aantron/${pname}/archive/${version}.tar.gz";
2020-07-05 19:39:47 +00:00
sha256 = "0v417ch5zn0yknj156awa5mrq3mal08pbrvsyribbn63ix6f9y3p";
2018-02-02 06:39:50 +00:00
};
propagatedBuildInputs = [ ssl lwt ];
meta = {
homepage = "https://github.com/aantron/lwt_ssl";
description = "OpenSSL binding with concurrent I/O";
license = lib.licenses.lgpl21;
maintainers = [ lib.maintainers.vbgl ];
2018-02-02 06:39:50 +00:00
};
}