about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/tezos/store.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/ocaml-modules/tezos/store.nix')
-rw-r--r--pkgs/development/ocaml-modules/tezos/store.nix50
1 files changed, 0 insertions, 50 deletions
diff --git a/pkgs/development/ocaml-modules/tezos/store.nix b/pkgs/development/ocaml-modules/tezos/store.nix
deleted file mode 100644
index 3fbe945d07b7c..0000000000000
--- a/pkgs/development/ocaml-modules/tezos/store.nix
+++ /dev/null
@@ -1,50 +0,0 @@
-{ lib
-, buildDunePackage
-, tezos-stdlib
-, tezos-protocol-updater
-, tezos-validation
-, tezos-legacy-store
-, tezos-protocol-compiler
-, index
-, camlzip
-, tar-unix
-, ringo-lwt
-, digestif
-, alcotest-lwt
-, lwt-watcher
-}:
-
-buildDunePackage {
-  pname = "tezos-store";
-  inherit (tezos-stdlib) version useDune2;
-  src = "${tezos-stdlib.base_src}/src/lib_store";
-
-  propagatedBuildInputs = [
-    index
-    camlzip
-    tar-unix
-    ringo-lwt
-    digestif
-    lwt-watcher
-    tezos-protocol-updater
-    tezos-validation
-    tezos-legacy-store
-  ];
-
-  nativeBuildInputs = [
-    tezos-protocol-compiler
-  ];
-
-  strictDeps = true;
-
-  checkInputs = [
-    alcotest-lwt
-  ];
-
-  # A lot of extra deps with wide dependency cones needed
-  doCheck = false;
-
-  meta = tezos-stdlib.meta // {
-    description = "Tezos: custom economic-protocols environment implementation for `tezos-client` and testing";
-  };
-}