3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/networking/instant-messengers/jackline/default.nix

54 lines
938 B
Nix
Raw Normal View History

{ lib, fetchFromGitHub, ocamlPackages }:
2016-11-03 10:37:14 +00:00
with ocamlPackages;
2016-11-03 10:37:14 +00:00
buildDunePackage rec {
pname = "jackline";
version = "unstable-2021-08-10";
minimumOCamlVersion = "4.08";
useDune2 = true;
2016-11-03 10:37:14 +00:00
src = fetchFromGitHub {
owner = "hannesm";
repo = "jackline";
rev = "73d87e9a62d534566bb0fbe64990d32d75487f11";
sha256 = "0wk574rqfg2vqz27nasxzwf67x51pj5fgl4vkc27r741dg4q6c5a";
2016-11-03 10:37:14 +00:00
};
nativeBuildInpts = [
ppx_sexp_conv
ppx_deriving
];
2016-11-03 10:37:14 +00:00
buildInputs = [
erm_xmpp
tls
mirage-crypto-pk
x509
domain-name
ocaml_lwt
otr
astring
ptime
notty
sexplib
hex
uutf
uchar
uuseg
uucp
dns-client
cstruct
base64
];
2016-11-03 10:37:14 +00:00
meta = with lib; {
homepage = "https://github.com/hannesm/jackline";
2020-04-13 15:56:29 +01:00
description = "minimalistic secure XMPP client in OCaml";
2016-11-03 10:37:14 +00:00
license = licenses.bsd2;
maintainers = with maintainers; [ sternenseemann ];
};
}