summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/tezos/rpc.nix
blob: 33450bdf1675f30402a900068651605a20904e8d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ lib
, buildDunePackage
, tezos-stdlib
, tezos-error-monad
, resto
, resto-directory
}:

buildDunePackage {
  pname = "tezos-rpc";
  inherit (tezos-stdlib) version src useDune2 preBuild doCheck;

  propagatedBuildInputs = [
    tezos-error-monad
    resto
    resto-directory
  ];

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