41 lines
779 B
Nix
41 lines
779 B
Nix
|
{ 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
|
||
|
];
|
||
|
|
||
|
buildInputs = [
|
||
|
tezos-protocol-compiler
|
||
|
];
|
||
|
|
||
|
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";
|
||
|
};
|
||
|
}
|