about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/tezos/shell.nix
blob: cdf5ea6639557f908b0f2b678655a7e08ad3eedf (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
{ lib
, buildDunePackage
, tezos-stdlib
, tezos-p2p
, tezos-requester
, tezos-validation
, tezos-store
, lwt-canceler
, alcotest-lwt
, qcheck-alcotest
, tezos-base-test-helpers
, tezos-embedded-protocol-demo-noops
, tezos-protocol-plugin-alpha
, tezos-test-helpers
}:

buildDunePackage {
  pname = "tezos-shell";
  inherit (tezos-stdlib) version useDune2;
  src = "${tezos-stdlib.base_src}/src/lib_shell";

  propagatedBuildInputs = [
    lwt-canceler
    tezos-p2p
    tezos-requester
    tezos-store
    tezos-validation
  ];

  checkInputs = [
    alcotest-lwt
    qcheck-alcotest
    tezos-base-test-helpers
    tezos-embedded-protocol-demo-noops
    tezos-protocol-plugin-alpha
    tezos-test-helpers
  ];

  doCheck = true;

  meta = tezos-stdlib.meta // {
    description = "Tezos: descriptions of RPCs exported by `tezos-shell`";
  };
}