nixpkgs-suyu/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
574 B
Nix
Raw Normal View History

{ lib, fetchurl, buildDunePackage, ssl, lwt }:
2018-02-02 07:39:50 +01:00
buildDunePackage rec {
pname = "lwt_ssl";
version = "1.2.0";
duneVersion = "3";
src = fetchurl {
url = "https://github.com/ocsigen/lwt_ssl/releases/download/${version}/lwt_ssl-${version}.tbz";
hash = "sha256-swIK0nrs83fhw/J0Cgizbcu6mR+EMGZRE1dBBUiImnc=";
2018-02-02 07:39:50 +01: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 07:39:50 +01:00
};
}