2db064d028
ocamlPackages.lwt-canceler: 0.2 -> 0.3 ocamlPackages.json-data-encoding: 0.8 -> 0.10 ocamlPackages.data-encoding: 0.2.0 -> 0.4.0 ocamlPackages.ff-sig, ff-pbt: init at 0.6.1 ocamlPacakges.bls12-381: 0.3.15 -> 0.4.2 Co-authored-by: Vincent Laporte <vbgl@users.noreply.github.com>
45 lines
890 B
Nix
45 lines
890 B
Nix
{ lib
|
|
, buildDunePackage
|
|
, tezos-stdlib
|
|
, tezos-p2p
|
|
, tezos-requester
|
|
, tezos-validation
|
|
, tezos-store
|
|
, tezos-workers
|
|
, tezos-test-services
|
|
# , tezos-embedded-protocol-demo-noops
|
|
, tezos-test-helpers
|
|
# , tezos-protocol-plugin-alpha
|
|
, alcotest-lwt
|
|
, crowbar
|
|
}:
|
|
|
|
buildDunePackage {
|
|
pname = "tezos-shell";
|
|
inherit (tezos-stdlib) version useDune2;
|
|
src = "${tezos-stdlib.base_src}/src/lib_shell";
|
|
|
|
propagatedBuildInputs = [
|
|
tezos-p2p
|
|
tezos-requester
|
|
tezos-validation
|
|
tezos-store
|
|
tezos-workers
|
|
];
|
|
|
|
checkInputs = [
|
|
alcotest-lwt
|
|
crowbar
|
|
tezos-test-helpers
|
|
tezos-test-services
|
|
# tezos-embedded-protocol-demo-noops
|
|
# tezos-protocol-plugin-alpha
|
|
];
|
|
|
|
# A lot of extra deps with wide dependency cones needed
|
|
doCheck = false;
|
|
|
|
meta = tezos-stdlib.meta // {
|
|
description = "Tezos: descriptions of RPCs exported by `tezos-shell`";
|
|
};
|
|
}
|