summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/tezos/micheline.nix
blob: a729cdef155a27dbd8902545be21adf697234890 (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-error-monad
, uutf
, alcotest
, alcotest-lwt
, ppx_inline_test
}:

buildDunePackage {
  pname = "tezos-micheline";
  inherit (tezos-stdlib) version src useDune2 preBuild doCheck;

  propagatedBuildInputs = [
    tezos-error-monad
    uutf
  ];

  checkInputs = [
    alcotest
    alcotest-lwt
  ];

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