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

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

  preBuild = tezos-protocol-010-PtGRANAD.preBuild;

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

  buildInputs = [
    tezos-protocol-compiler
  ];

  doCheck = true;

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