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

23 lines
580 B
Nix
Raw Normal View History

{ stdenv, fetchzip, buildDunePackage, ssl, lwt }:
2018-02-02 07:39:50 +01:00
buildDunePackage rec {
pname = "lwt_ssl";
2018-02-02 07:39:50 +01:00
version = "1.1.2";
minimumOCamlVersion = "4.02";
2018-02-02 07:39:50 +01:00
src = fetchzip {
url = "https://github.com/aantron/${pname}/archive/${version}.tar.gz";
2018-02-02 07:39:50 +01:00
sha256 = "1q0an3djqjxv83v3iswi7m81braqx93kcrcwrxwmf6jzhdm4pn15";
};
propagatedBuildInputs = [ ssl lwt ];
meta = {
homepage = "https://github.com/aantron/lwt_ssl";
description = "OpenSSL binding with concurrent I/O";
license = stdenv.lib.licenses.lgpl21;
maintainers = [ stdenv.lib.maintainers.vbgl ];
};
}