about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/tezos/embedded-protocol-010-PtGRANAD.nix
blob: e2b9a8e8d79bc0be0378b77e60e1e797a97b025c (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
{ lib
, buildDunePackage
, tezos-stdlib
, tezos-protocol-010-PtGRANAD
, tezos-protocol-updater
}:

buildDunePackage {
  pname = "tezos-embedded-protocol-010-PtGRANAD";
  inherit (tezos-stdlib) version useDune2;
  src = "${tezos-stdlib.base_src}/src";

  propagatedBuildInputs = [
    tezos-protocol-010-PtGRANAD
    tezos-protocol-updater
  ];

  doCheck = true;

  meta = tezos-stdlib.meta // {
    description = "Tezos/Protocol: economic-protocol definition, embedded in `tezos-node`";
  };
}