depot/third_party/nixpkgs/pkgs/development/ocaml-modules/tezos/p2p.nix
Default email 6064764516 Project import generated by Copybara.
GitOrigin-RevId: 2cf9db0e3d45b9d00f16f2836cb1297bcadc475e
2021-10-14 08:43:12 +08:00

32 lines
534 B
Nix

{ lib
, buildDunePackage
, tezos-stdlib
, tezos-p2p-services
, tezos-test-services
, alcotest-lwt
, astring
, lwt-watcher
}:
buildDunePackage {
pname = "tezos-p2p";
inherit (tezos-stdlib) version useDune2;
src = "${tezos-stdlib.base_src}/src/lib_p2p";
propagatedBuildInputs = [
tezos-p2p-services
lwt-watcher
];
checkInputs = [
astring
alcotest-lwt
tezos-test-services
];
doCheck = true;
meta = tezos-stdlib.meta // {
description = "Tezos: library for a pool of P2P connections";
};
}