2020-08-31 10:00:17 +00:00
|
|
|
{ lib, fetchFromGitHub, ocamlPackages }:
|
2016-11-03 10:37:14 +00:00
|
|
|
|
2020-08-31 10:00:17 +00:00
|
|
|
with ocamlPackages;
|
2016-11-03 10:37:14 +00:00
|
|
|
|
2020-08-31 10:00:17 +00:00
|
|
|
buildDunePackage rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "jackline";
|
2023-09-01 04:50:28 +00:00
|
|
|
version = "unstable-2023-03-09";
|
2020-08-31 10:00:17 +00:00
|
|
|
|
2023-01-07 21:25:51 +00:00
|
|
|
minimalOCamlVersion = "4.08";
|
2020-08-31 10:00:17 +00:00
|
|
|
|
2016-11-03 10:37:14 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "hannesm";
|
|
|
|
repo = "jackline";
|
2023-09-01 04:50:28 +00:00
|
|
|
rev = "a7acd19bd8141b842ac69b05146d9a63e729230d";
|
|
|
|
hash = "sha256-AhiFfZkDit9tnGenETc3A1hHqWN+csiS2bVjsGNaHf8=";
|
2016-11-03 10:37:14 +00:00
|
|
|
};
|
|
|
|
|
2020-08-31 10:00:17 +00:00
|
|
|
nativeBuildInpts = [
|
|
|
|
ppx_sexp_conv
|
|
|
|
ppx_deriving
|
|
|
|
];
|
2016-11-03 10:37:14 +00:00
|
|
|
|
2020-08-31 10:00:17 +00:00
|
|
|
buildInputs = [
|
|
|
|
erm_xmpp
|
|
|
|
tls
|
|
|
|
mirage-crypto-pk
|
|
|
|
x509
|
|
|
|
domain-name
|
2023-01-07 21:25:51 +00:00
|
|
|
lwt
|
2020-08-31 10:00:17 +00:00
|
|
|
otr
|
|
|
|
astring
|
|
|
|
ptime
|
|
|
|
notty
|
|
|
|
sexplib
|
|
|
|
hex
|
|
|
|
uchar
|
|
|
|
uucp
|
2023-01-07 21:25:51 +00:00
|
|
|
uuseg
|
|
|
|
uutf
|
2020-08-31 10:00:17 +00:00
|
|
|
dns-client
|
|
|
|
cstruct
|
|
|
|
base64
|
2023-01-07 21:25:51 +00:00
|
|
|
happy-eyeballs-lwt
|
2023-09-01 04:50:28 +00:00
|
|
|
ppx_sexp_conv
|
2020-08-31 10:00:17 +00:00
|
|
|
];
|
2016-11-03 10:37:14 +00:00
|
|
|
|
2020-08-31 10:00:17 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/hannesm/jackline";
|
2020-04-13 14:56:29 +00:00
|
|
|
description = "minimalistic secure XMPP client in OCaml";
|
2016-11-03 10:37:14 +00:00
|
|
|
license = licenses.bsd2;
|
|
|
|
maintainers = with maintainers; [ sternenseemann ];
|
|
|
|
};
|
|
|
|
}
|