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

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

  propagatedBuildInputs = [
    tezos-base
    lwt-watcher
  ];

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

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