0eeabdeb66
GitOrigin-RevId: c07b471b52be8fbc49a7dc194e9b37a6e19ee04d
30 lines
535 B
Nix
30 lines
535 B
Nix
{ 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`";
|
|
};
|
|
}
|