6064764516
GitOrigin-RevId: 2cf9db0e3d45b9d00f16f2836cb1297bcadc475e
25 lines
479 B
Nix
25 lines
479 B
Nix
{ 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`";
|
|
};
|
|
}
|