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

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

  propagatedBuildInputs = [
    tezos-protocol-updater
  ];

  nativeBuildInputs = [
    tezos-protocol-compiler
  ];

  strictDeps = true;

  doCheck = true;

  meta = tezos-stdlib.meta // {
    description = "Tezos: library for blocks validation";
  };
}