mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-17 03:03:37 +00:00
ad5271a331
* ocamlPackages.x509: 0.14.1 -> 0.15.2 https://github.com/mirleft/ocaml-x509/releases/tag/v0.15.0 https://github.com/mirleft/ocaml-x509/releases/tag/v0.15.1 https://github.com/mirleft/ocaml-x509/releases/tag/v0.15.2 * ocamlPackages.awa*: 0.0.4 -> 0.0.5 https://github.com/mirage/awa-ssh/releases/tag/v0.0.5 * ocamlPackages.tls*: 0.14.1 -> 0.15.2 https://github.com/mirleft/ocaml-tls/releases/tag/v0.15.0 https://github.com/mirleft/ocaml-tls/releases/tag/v0.15.1 https://github.com/mirleft/ocaml-tls/releases/tag/v0.15.2 * jackline: unstable-2021-08-10 -> unstable-2021-12-28 * ocamlPackages.ca-certs-nss: 3.66 -> 3.71.0.1 https://github.com/mirage/ca-certs-nss/releases/tag/v3.71 https://github.com/mirage/ca-certs-nss/releases/tag/v3.71.0.1 * ocamlPackages.conduit*: 4.0.1 -> 4.0.2 https://github.com/mirage/ocaml-conduit/releases/tag/v4.0.2 * ocamlPackages.letsencrypt*: 0.3.0 -> 0.4.1 https://github.com/mmaker/ocaml-letsencrypt/releases/tag/v0.4.0 https://github.com/mmaker/ocaml-letsencrypt/releases/tag/v0.4.1 * ocamlPackages.paf: 0.0.5 -> 0.0.6 https://github.com/dinosaure/paf-le-chien/releases/tag/0.0.6
54 lines
938 B
Nix
54 lines
938 B
Nix
{ lib, fetchFromGitHub, ocamlPackages }:
|
|
|
|
with ocamlPackages;
|
|
|
|
buildDunePackage rec {
|
|
pname = "jackline";
|
|
version = "unstable-2021-12-28";
|
|
|
|
minimumOCamlVersion = "4.08";
|
|
|
|
useDune2 = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "hannesm";
|
|
repo = "jackline";
|
|
rev = "ca1012098d123c555e9fa5244466d2e009521700";
|
|
sha256 = "1j1azskcdrp4g44rv3a4zylkzbzpcs23zzzrx94llbgssw6cd9ih";
|
|
};
|
|
|
|
nativeBuildInpts = [
|
|
ppx_sexp_conv
|
|
ppx_deriving
|
|
];
|
|
|
|
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
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/hannesm/jackline";
|
|
description = "minimalistic secure XMPP client in OCaml";
|
|
license = licenses.bsd2;
|
|
maintainers = with maintainers; [ sternenseemann ];
|
|
};
|
|
}
|