about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/tezos/context.nix
blob: e118c3e1ebe4d754473355b01d5f466b4077cbd4 (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
30
31
32
33
34
{ lib
, buildDunePackage
, tezos-stdlib
, tezos-base
, tezos-shell-services
, irmin
, irmin-pack
, digestif
, alcotest-lwt
}:

buildDunePackage {
  pname = "tezos-context";
  inherit (tezos-stdlib) version useDune2;
  src = "${tezos-stdlib.base_src}/src/lib_context";

  propagatedBuildInputs = [
    tezos-base
    tezos-shell-services
    irmin
    irmin-pack
    digestif
  ];

  checkInputs = [
    alcotest-lwt
  ];

  doCheck = true;

  meta = tezos-stdlib.meta // {
    description = "Tezos: library of auto-documented RPCs (service and hierarchy descriptions)";
  };
}