about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/tezos/mockup-registration.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/ocaml-modules/tezos/mockup-registration.nix')
-rw-r--r--pkgs/development/ocaml-modules/tezos/mockup-registration.nix23
1 files changed, 0 insertions, 23 deletions
diff --git a/pkgs/development/ocaml-modules/tezos/mockup-registration.nix b/pkgs/development/ocaml-modules/tezos/mockup-registration.nix
deleted file mode 100644
index 651c89a598646..0000000000000
--- a/pkgs/development/ocaml-modules/tezos/mockup-registration.nix
+++ /dev/null
@@ -1,23 +0,0 @@
-{ lib
-, buildDunePackage
-, tezos-stdlib
-, tezos-client-base
-, tezos-protocol-environment
-}:
-
-buildDunePackage {
-  pname = "tezos-mockup-registration";
-  inherit (tezos-stdlib) version useDune2;
-  src = "${tezos-stdlib.base_src}/src/lib_mockup";
-
-  propagatedBuildInputs = [
-    tezos-client-base
-    tezos-protocol-environment
-  ];
-
-  doCheck = true;
-
-  meta = tezos-stdlib.meta // {
-    description = "Tezos: protocol registration for the mockup mode";
-  };
-}