about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/ocaml-modules/tezos/micheline.nix
blob: c28e8f897450975059948ca129116f0a62f21a35 (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
31
32
{ lib
, buildDunePackage
, tezos-stdlib
, tezos-error-monad
, uutf
, alcotest
, alcotest-lwt
, ppx_inline_test
}:

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

  propagatedBuildInputs = [
    tezos-error-monad
    uutf
    ppx_inline_test
  ];

  checkInputs = [
    alcotest
    alcotest-lwt
  ];

  doCheck = true;

  meta = tezos-stdlib.meta // {
    description = "Tezos: internal AST and parser for the Michelson language";
  };
}