summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/tezos/p2p.nix
blob: b75c03debfa2ecaea3b8580bd01efe85355dfce8 (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-p2p-services
, alcotest-lwt
, lwt-watcher
}:

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

  propagatedBuildInputs = [
    tezos-p2p-services
    lwt-watcher
  ];

  checkInputs = [
    alcotest-lwt
  ];

  meta = tezos-stdlib.meta // {
    description = "Tezos: library for a pool of P2P connections";
  };
}