about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/erm_xmpp/0.3.nix
blob: a7290c8bb98f337ce2c3214e1d33cb9d599182ce (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
26
27
28
29
{ stdenv, buildOcaml, fetchFromGitHub, fetchurl, ocaml, findlib, erm_xml, nocrypto }:

buildOcaml rec {
  version = "0.3";
  name = "erm_xmpp";

  src = fetchFromGitHub {
    owner  = "hannesm";
    repo   = "xmpp";
    rev    = "eee18bd3dd343550169969c0b45548eafd51cfe1";
    sha256 = "0hzs528lrx1ayalv6fh555pjn0b4l8xch1f72hd3b07g1xahdas5";
  };

  buildInputs = [ ocaml findlib ];
  propagatedBuildInputs = [ erm_xml nocrypto ];

  configurePhase = "ocaml setup.ml -configure --prefix $out";
  buildPhase = "ocaml setup.ml -build";
  installPhase = "ocaml setup.ml -install";

  createFindlibDestdir = true;

  meta = {
    homepage = https://github.com/hannesm/xmpp;
    description = "OCaml based XMPP implementation (fork)";
    license = stdenv.lib.licenses.bsd3;
    maintainers = with stdenv.lib.maintainers; [ sternenseemann ];
  };
}