about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/tezos/shell-services.nix
blob: 34354b1821f8e216db00f95ac70f1a5d34b82cef (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
{ lib
, buildDunePackage
, tezos-stdlib
, tezos-workers
, tezos-p2p-services
, tezos-version
, alcotest-lwt
}:

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

  propagatedBuildInputs = [
    tezos-workers
    tezos-p2p-services
    tezos-version
  ];

  doCheck = true;

  checkInputs = [
    alcotest-lwt
  ];

  meta = tezos-stdlib.meta // {
    description = "Tezos: descriptions of RPCs exported by `tezos-shell`";
  };
}