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

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;

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