2016-11-03 10:37:14 +00:00
|
|
|
{stdenv, fetchFromGitHub, ocamlPackages, opam}:
|
|
|
|
|
|
|
|
assert stdenv.lib.versionAtLeast ocamlPackages.ocaml.version "4.02.2";
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2017-07-11 13:31:27 +01:00
|
|
|
version = "2017-05-24";
|
2016-11-03 10:37:14 +00:00
|
|
|
name = "jackline-${version}";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "hannesm";
|
|
|
|
repo = "jackline";
|
2017-07-11 13:31:27 +01:00
|
|
|
rev = "49a326d5696aa24f3ac18534c8860e03d0d58548";
|
|
|
|
sha256 = "0p741mzq4kkqyly8njga1f5dxdnfz31wy2lpvs5542pq0iwvdj7k";
|
2016-11-03 10:37:14 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = with ocamlPackages; [
|
|
|
|
ocaml ocamlbuild findlib topkg ppx_sexp_conv
|
|
|
|
erm_xmpp_0_3 tls nocrypto x509 ocaml_lwt otr astring
|
|
|
|
ptime notty sexplib_p4 hex uutf opam
|
|
|
|
];
|
|
|
|
|
|
|
|
buildPhase = with ocamlPackages;
|
|
|
|
"ocaml -I ${findlib}/lib/ocaml/${ocaml.version}/site-lib pkg/pkg.ml build --pinned true";
|
|
|
|
|
|
|
|
installPhase = "opam-installer --prefix=$out --script | sh";
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = https://github.com/hannesm/jackline;
|
|
|
|
description = "Terminal-based XMPP client in OCaml";
|
|
|
|
license = licenses.bsd2;
|
|
|
|
maintainers = with maintainers; [ sternenseemann ];
|
|
|
|
};
|
|
|
|
}
|