summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/tezos/requester.nix
blob: 2326f8ec91d52e0f5dd8caaf572807e97b7a7cba (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
, tezos-base
, tezos-test-services
, lwt-watcher
, alcotest-lwt
}:

buildDunePackage {
  pname = "tezos-requester";
  inherit (tezos-stdlib) version useDune2;
  src = "${tezos-stdlib.base_src}/src/lib_requester";

  propagatedBuildInputs = [
    tezos-base
    lwt-watcher
  ];

  checkInputs = [
    alcotest-lwt
    tezos-test-services
  ];

  doCheck = true;

  meta = tezos-stdlib.meta // {
    description = "Tezos: generic resource fetching service";
  };
}