about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/ocaml-modules/tezos/client-base.nix
blob: f2503481720aace2409e2d31cd0f8d24b51754d7 (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
{ lib
, buildDunePackage
, tezos-stdlib
, tezos-shell-services
, tezos-sapling
, alcotest
}:

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

  propagatedBuildInputs = [
    tezos-shell-services
    tezos-sapling
  ];

  checkInputs = [
    alcotest
  ];

  doCheck = true;

  meta = tezos-stdlib.meta // {
    description = "Tezos: protocol registration for the mockup mode";
  };
}