summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/rpclib/default.nix
blob: a4134f592b36fd7a86786b686fd8ef4c0a33ba12 (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
{ lib, fetchFromGitHub, buildDunePackage, alcotest, cmdliner, rresult, result, xmlm, yojson }:

buildDunePackage rec {
  pname = "rpclib";
  version = "6.0.0";

  minimumOCamlVersion = "4.04";

  src = fetchFromGitHub {
    owner = "mirage";
    repo = "ocaml-rpc";
    rev = "v${version}";
    sha256 = "0bmr20sj7kybjjlwd42irj0f5zlnxcw7mxa1mdgxkki9bmhsqr51";
  };

  buildInputs = [ alcotest cmdliner yojson ];
  propagatedBuildInputs = [ rresult result xmlm ];

  doCheck = true;

  meta = with lib; {
    homepage = "https://github.com/mirage/ocaml-rpc";
    description = "Light library to deal with RPCs in OCaml";
    license = licenses.isc;
    maintainers = [ maintainers.vyorkin ];
  };
}