about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/ocaml-modules/tezos/shell.nix
blob: 268db42fcdb9f8b0ab6da78431ee6be8cc5cf130 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{ 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`";
  };
}