mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 04:02:55 +03:00
23 lines
532 B
Nix
23 lines
532 B
Nix
{ lib, fetchFromGitHub, buildDunePackage, ssl, lwt }:
|
|
|
|
buildDunePackage rec {
|
|
pname = "lwt_ssl";
|
|
version = "1.1.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "aantron";
|
|
repo = "lwt_ssl";
|
|
rev = version;
|
|
sha256 = "sha256-d/jkTI/D2LVi9nrndRGgqg6ca1FcmRKknR7YXyA7gWw=";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|