about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/tezos/protocol-plugin-alpha.nix
blob: 588a420a890155b55201d3067e8f4755956a7bf3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ lib
, buildDunePackage
, tezos-stdlib
, tezos-protocol-alpha
}:

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

  propagatedBuildInputs = [
    tezos-protocol-alpha
  ];

  doCheck = true;

  meta = tezos-stdlib.meta // {
    description = "Tezos/Protocol: protocol plugin";
  };
}