6064764516
GitOrigin-RevId: 2cf9db0e3d45b9d00f16f2836cb1297bcadc475e
32 lines
537 B
Nix
32 lines
537 B
Nix
{ 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";
|
|
};
|
|
}
|