6064764516
GitOrigin-RevId: 2cf9db0e3d45b9d00f16f2836cb1297bcadc475e
36 lines
616 B
Nix
36 lines
616 B
Nix
{ lib
|
|
, buildDunePackage
|
|
, tezos-stdlib
|
|
, tezos-mockup-proxy
|
|
, tezos-context
|
|
, ringo-lwt
|
|
, alcotest-lwt
|
|
, crowbar
|
|
, tezos-test-services
|
|
, tezos-test-helpers
|
|
}:
|
|
|
|
buildDunePackage {
|
|
pname = "tezos-proxy";
|
|
inherit (tezos-stdlib) version useDune2;
|
|
src = "${tezos-stdlib.base_src}/src/lib_proxy";
|
|
|
|
propagatedBuildInputs = [
|
|
ringo-lwt
|
|
tezos-mockup-proxy
|
|
tezos-context
|
|
];
|
|
|
|
checkInputs = [
|
|
alcotest-lwt
|
|
crowbar
|
|
tezos-test-services
|
|
tezos-test-helpers
|
|
];
|
|
|
|
doCheck = true;
|
|
|
|
meta = tezos-stdlib.meta // {
|
|
description = "Tezos: protocol registration for the mockup mode";
|
|
};
|
|
}
|