summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/tezos/clic.nix
blob: d69174e5f29800589146c208516ffa21374799af (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
{ lib
, buildDunePackage
, tezos-stdlib
, tezos-stdlib-unix
, alcotest
, alcotest-lwt
}:

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

  propagatedBuildInputs = [
    tezos-stdlib-unix
  ];

  checkInputs = [
    alcotest
    alcotest-lwt
  ];

  meta = tezos-stdlib.meta // {
    description = "Tezos: library of auto-documented command-line-parsing combinators";
  };
}