summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/tezos/requester.nix
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2021-07-23 12:01:27 +0000
committerGitHub <noreply@github.com>2021-07-23 12:01:27 +0000
commit55a4a2d60a420ca83f31e3f659beb295fd6b8626 (patch)
tree9cc208b4782113ac800c2b80221e0dd7c3fe52fa /pkgs/development/ocaml-modules/tezos/requester.nix
parent42481e7440dbc78a08bc8d1995d512c011515d7f (diff)
parent5c96c4d2845fd6224a2a8709d67b21369a4206c8 (diff)
downloadnixpkgs-55a4a2d60a420ca83f31e3f659beb295fd6b8626.tar
nixpkgs-55a4a2d60a420ca83f31e3f659beb295fd6b8626.tar.gz
nixpkgs-55a4a2d60a420ca83f31e3f659beb295fd6b8626.tar.bz2
nixpkgs-55a4a2d60a420ca83f31e3f659beb295fd6b8626.tar.lz
nixpkgs-55a4a2d60a420ca83f31e3f659beb295fd6b8626.tar.xz
nixpkgs-55a4a2d60a420ca83f31e3f659beb295fd6b8626.tar.zst
nixpkgs-55a4a2d60a420ca83f31e3f659beb295fd6b8626.zip
Merge master into staging-next
Diffstat (limited to 'pkgs/development/ocaml-modules/tezos/requester.nix')
-rw-r--r--pkgs/development/ocaml-modules/tezos/requester.nix27
1 files changed, 27 insertions, 0 deletions
diff --git a/pkgs/development/ocaml-modules/tezos/requester.nix b/pkgs/development/ocaml-modules/tezos/requester.nix
new file mode 100644
index 00000000000..d4a2b69eaa8
--- /dev/null
+++ b/pkgs/development/ocaml-modules/tezos/requester.nix
@@ -0,0 +1,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";
+  };
+}