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

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

  minimumOCamlVersion = "4.04";

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

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

  doCheck = true;

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