about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/tezos/embedded-protocol-demo-noops.nix
blob: abe4aed67eb7a4e06bcb23bd759ae7cd7773949a (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-demo-noops
, tezos-protocol-updater
}:

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

  propagatedBuildInputs = [
    tezos-protocol-demo-noops
    tezos-protocol-updater
  ];

  doCheck = true;

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