about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/tezos/rpc.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/ocaml-modules/tezos/rpc.nix')
-rw-r--r--pkgs/development/ocaml-modules/tezos/rpc.nix25
1 files changed, 0 insertions, 25 deletions
diff --git a/pkgs/development/ocaml-modules/tezos/rpc.nix b/pkgs/development/ocaml-modules/tezos/rpc.nix
deleted file mode 100644
index f8a1336146e32..0000000000000
--- a/pkgs/development/ocaml-modules/tezos/rpc.nix
+++ /dev/null
@@ -1,25 +0,0 @@
-{ lib
-, buildDunePackage
-, tezos-stdlib
-, tezos-error-monad
-, resto
-, resto-directory
-}:
-
-buildDunePackage {
-  pname = "tezos-rpc";
-  inherit (tezos-stdlib) version useDune2;
-  src = "${tezos-stdlib.base_src}/src/lib_rpc";
-
-  propagatedBuildInputs = [
-    tezos-error-monad
-    resto
-    resto-directory
-  ];
-
-  doCheck = true;
-
-  meta = tezos-stdlib.meta // {
-    description = "Tezos: library of auto-documented RPCs (service and hierarchy descriptions)";
-  };
-}