summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/tezos/error-monad.nix
blob: 70cdff0c0aca729dde6a433f4c991f1de0dbae7b (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
{ lib
, buildDunePackage
, tezos-stdlib
, data-encoding
, lwt
, lwt-canceler
, alcotest
, alcotest-lwt
}:

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

  propagatedBuildInputs = [
    tezos-stdlib
    data-encoding
    lwt
    lwt-canceler
  ];

  checkInputs = [
    alcotest
    alcotest-lwt
  ];

  meta = tezos-stdlib.meta // {
    description = "Tezos: error monad";
  };
}