2021-10-14 00:43:12 +00:00
|
|
|
{ lib
|
|
|
|
, buildDunePackage
|
|
|
|
, tezos-stdlib
|
|
|
|
, tezos-context
|
|
|
|
, tezos-lmdb
|
|
|
|
, tezos-validation
|
|
|
|
, tezos-shell-services
|
|
|
|
, tezos-protocol-compiler
|
|
|
|
, lwt-watcher
|
|
|
|
, alcotest-lwt
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildDunePackage {
|
|
|
|
pname = "tezos-legacy-store";
|
|
|
|
inherit (tezos-stdlib) version useDune2;
|
|
|
|
src = "${tezos-stdlib.base_src}/src/lib_store/legacy_store";
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
tezos-context
|
|
|
|
tezos-lmdb
|
|
|
|
tezos-validation
|
|
|
|
tezos-shell-services
|
|
|
|
lwt-watcher
|
|
|
|
];
|
|
|
|
|
2022-03-05 16:20:37 +00:00
|
|
|
nativeBuildInputs = [
|
2021-10-14 00:43:12 +00:00
|
|
|
tezos-protocol-compiler
|
|
|
|
];
|
|
|
|
|
2022-03-05 16:20:37 +00:00
|
|
|
strictDeps = true;
|
|
|
|
|
2021-10-14 00:43:12 +00:00
|
|
|
checkInputs = [
|
|
|
|
alcotest-lwt
|
|
|
|
];
|
|
|
|
|
|
|
|
# A lot of extra deps with wide dependency cones needed
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = tezos-stdlib.meta // {
|
|
|
|
description = "Tezos: custom economic-protocols environment implementation for `tezos-client` and testing";
|
|
|
|
};
|
|
|
|
}
|