summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/otr/default.nix
blob: caa2d01a441882319598a1b6d9ced06733cac327 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ lib, fetchFromGitHub, buildDunePackage
, cstruct, sexplib0, rresult, nocrypto, astring
}:

buildDunePackage rec {
  pname = "otr";
  version = "0.3.6";

  src = fetchFromGitHub {
    owner  = "hannesm";
    repo   = "ocaml-otr";
    rev    = "${version}";
    sha256 = "0iz6p85a0jxng9aq9blqsky173zaqfr6wlc5j48ad55lgwzlbih5";
  };

  propagatedBuildInputs = [ cstruct sexplib0 rresult nocrypto astring ];

  doCheck = true;
  meta = with lib; {
    homepage = https://github.com/hannesm/ocaml-otr;
    description = "Off-the-record messaging protocol, purely in OCaml";
    license = licenses.bsd2;
    maintainers = with maintainers; [ sternenseemann ];
  };
}