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

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

23 lines
532 B
Nix
Raw Normal View History

{ lib, fetchFromGitHub, 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";
src = fetchFromGitHub {
owner = "aantron";
repo = "lwt_ssl";
rev = version;
sha256 = "sha256-d/jkTI/D2LVi9nrndRGgqg6ca1FcmRKknR7YXyA7gWw=";
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
};
}