summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/tezos/rpc.nix
diff options
context:
space:
mode:
authorUlrik Strid <ulrik.strid@outlook.com>2021-07-07 11:34:04 +0200
committerVincent Laporte <vbgl@users.noreply.github.com>2021-07-23 13:33:59 +0200
commit5c96c4d2845fd6224a2a8709d67b21369a4206c8 (patch)
tree9cc208b4782113ac800c2b80221e0dd7c3fe52fa /pkgs/development/ocaml-modules/tezos/rpc.nix
parente506c26d14ec32f19dc785ccfb0ab97071f12c66 (diff)
downloadnixpkgs-5c96c4d2845fd6224a2a8709d67b21369a4206c8.tar
nixpkgs-5c96c4d2845fd6224a2a8709d67b21369a4206c8.tar.gz
nixpkgs-5c96c4d2845fd6224a2a8709d67b21369a4206c8.tar.bz2
nixpkgs-5c96c4d2845fd6224a2a8709d67b21369a4206c8.tar.lz
nixpkgs-5c96c4d2845fd6224a2a8709d67b21369a4206c8.tar.xz
nixpkgs-5c96c4d2845fd6224a2a8709d67b21369a4206c8.tar.zst
nixpkgs-5c96c4d2845fd6224a2a8709d67b21369a4206c8.zip
ocamlPackages.tezos-*: init at 8.3
Init all tezos packages needed to build LIGO
Diffstat (limited to 'pkgs/development/ocaml-modules/tezos/rpc.nix')
-rw-r--r--pkgs/development/ocaml-modules/tezos/rpc.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/development/ocaml-modules/tezos/rpc.nix b/pkgs/development/ocaml-modules/tezos/rpc.nix
new file mode 100644
index 00000000000..33450bdf167
--- /dev/null
+++ b/pkgs/development/ocaml-modules/tezos/rpc.nix
@@ -0,0 +1,22 @@
+{ lib
+, buildDunePackage
+, tezos-stdlib
+, tezos-error-monad
+, resto
+, resto-directory
+}:
+
+buildDunePackage {
+  pname = "tezos-rpc";
+  inherit (tezos-stdlib) version src useDune2 preBuild doCheck;
+
+  propagatedBuildInputs = [
+    tezos-error-monad
+    resto
+    resto-directory
+  ];
+
+  meta = tezos-stdlib.meta // {
+    description = "Tezos: library of auto-documented RPCs (service and hierarchy descriptions)";
+  };
+}