summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/tezos/protocol-environment.nix
blob: 60d9ae29222eb46fb96db2ff1b1ab60adc353706 (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
{ lib
, buildDunePackage
, tezos-stdlib
, tezos-base
, tezos-sapling
, tezos-protocol-environment-sigs
, tezos-protocol-environment-structs
, zarith
, alcotest-lwt
, crowbar
}:

buildDunePackage {
  pname = "tezos-protocol-environment";
  inherit (tezos-stdlib) version src useDune2 doCheck preBuild;

  propagatedBuildInputs = [
    tezos-sapling
    tezos-base
    tezos-protocol-environment-sigs
    tezos-protocol-environment-structs
    zarith # this might break, since they actually want 1.11
  ];

  checkInputs = [
    alcotest-lwt
    crowbar
  ];

  meta = tezos-stdlib.meta // {
    description = "Tezos: custom economic-protocols environment implementation for `tezos-client` and testing";
  };
}