mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
5c96c4d284
Init all tezos packages needed to build LIGO
29 lines
465 B
Nix
29 lines
465 B
Nix
{ 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";
|
|
};
|
|
}
|