6064764516
GitOrigin-RevId: 2cf9db0e3d45b9d00f16f2836cb1297bcadc475e
38 lines
802 B
Nix
38 lines
802 B
Nix
{ lib
|
|
, buildDunePackage
|
|
, tezos-stdlib
|
|
, tezos-mockup-registration
|
|
, tezos-proxy
|
|
, tezos-signer-backends
|
|
, tezos-protocol-010-PtGRANAD-parameters
|
|
, tezos-protocol-plugin-010-PtGRANAD
|
|
, alcotest-lwt
|
|
, ppx_inline_test
|
|
, cacert
|
|
}:
|
|
|
|
buildDunePackage {
|
|
pname = "tezos-client-010-PtGRANAD";
|
|
inherit (tezos-stdlib) version useDune2;
|
|
src = "${tezos-stdlib.base_src}/src/proto_010_PtGRANAD/lib_client";
|
|
|
|
propagatedBuildInputs = [
|
|
tezos-mockup-registration
|
|
tezos-proxy
|
|
tezos-signer-backends
|
|
tezos-protocol-010-PtGRANAD-parameters
|
|
tezos-protocol-plugin-010-PtGRANAD
|
|
ppx_inline_test
|
|
];
|
|
|
|
checkInputs = [
|
|
alcotest-lwt
|
|
cacert
|
|
];
|
|
|
|
doCheck = true;
|
|
|
|
meta = tezos-stdlib.meta // {
|
|
description = "Tezos/Protocol: protocol specific library for `tezos-client`";
|
|
};
|
|
}
|