6064764516
GitOrigin-RevId: 2cf9db0e3d45b9d00f16f2836cb1297bcadc475e
28 lines
486 B
Nix
28 lines
486 B
Nix
{ lib
|
|
, buildDunePackage
|
|
, tezos-stdlib
|
|
, tezos-shell-services
|
|
, tezos-sapling
|
|
, alcotest
|
|
}:
|
|
|
|
buildDunePackage {
|
|
pname = "tezos-client-base";
|
|
inherit (tezos-stdlib) version useDune2;
|
|
src = "${tezos-stdlib.base_src}/src/lib_client_base";
|
|
|
|
propagatedBuildInputs = [
|
|
tezos-shell-services
|
|
tezos-sapling
|
|
];
|
|
|
|
checkInputs = [
|
|
alcotest
|
|
];
|
|
|
|
doCheck = true;
|
|
|
|
meta = tezos-stdlib.meta // {
|
|
description = "Tezos: protocol registration for the mockup mode";
|
|
};
|
|
}
|