unikernel-repo/packages/jackline.0.1~dev/opam

74 lines
2.4 KiB
Text
Raw Normal View History

2021-12-28 16:00:22 +00:00
opam-version: "2.0"
synopsis: "Jackline - a minimalistic secure XMPP client"
description: """
Jackline uses several clean-slate libraries (OCaml-TLS, OCaml-OTR) and only has
a minimal few features: no support for HTML markup, avatars, which music you're
playing, timezone you're living in, ...
Supported features:
- single XMPP account
- OTR (built-in and enabled by default)
- strict TLS certificate verification
- plain text (no HTML!)
- [XEP-0184](http://xmpp.org/extensions/xep-0184.html) (Message Delivery Receipts)
- _no_ import of OTR keys or configuration
- _no_ plaintext connections to XMPP server
Preserving three core properties:
- any data written on disk (using lots of silly parens) by jackline will stay being readable by every future jackline version
- once the initial configuration file (and private key and maybe password) is created, it will never be written to by jackline
- jackline will never transmit any data or open a network connection unless initiated by you (this means no 'autoconnect on startup', or 'user is typing' indication sent). There is an automated reconnect to the same server if the connection terminated.
"""
maintainer: ["Hannes Mehnert <hannes@mehnert.org>"]
authors: ["Hannes Mehnert <hannes@mehnert.org>"]
license: "BSD2"
homepage: "https://github.com/hannesm/jackline"
bug-reports: "https://github.com/hannesm/jackline/issues"
depends: [
"dune" {>= "2.5"}
2023-09-25 19:42:01 +00:00
"ocaml" {>= "4.08" & < "5.0.0"}
2021-12-28 16:00:22 +00:00
"ppx_sexp_conv" {build}
"ppx_deriving" {>= "0.14.0"}
2021-12-29 00:33:26 +00:00
"erm_xmpp" {> "0.3"}
2023-03-09 09:58:02 +00:00
"tls" {>= "0.17.0"}
"tls-lwt" {>= "0.17.0"}
2021-12-28 16:00:22 +00:00
"mirage-crypto-pk" {>= "0.8.3"}
2023-02-24 17:10:35 +00:00
"mirage-crypto-rng" {>= "0.11.0"}
2021-12-28 16:00:22 +00:00
"x509" {>= "0.10.0"}
"domain-name" {>= "0.2.0"}
"lwt" {>= "0.5.3"}
"otr" {>= "0.2.1"}
"astring" {>= "0.8.3"}
"ptime" {>= "0.8.0"}
"notty" {>= "0.2.2"}
"sexplib" {>= "0.14.0"}
"hex" {>= "1.4.0"}
"uchar" {>= "0.0.2"}
"uucp" {>= "2.0.0"}
"uuseg" {>= "1.0.0"}
"uutf" {>= "1.0.0"}
"cstruct" {>= "6.0.0"}
"base64" {>= "3.4.0"}
"happy-eyeballs-lwt" {>= "0.1.1"}
]
build: [
2021-12-28 16:14:54 +00:00
["dune" "subst"] {dev}
2021-12-28 16:00:22 +00:00
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
["sh" "-ex" "packaging/FreeBSD/create_package.sh"] {os = "freebsd"}
["sh" "-ex" "packaging/debian/create_package.sh"] {os-family = "debian"}
]
dev-repo: "git+https://github.com/hannesm/jackline.git"
url {
src: "git+https://github.com/hannesm/jackline.git"
}