summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/tezos/010-PtGRANAD-test-helpers.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/ocaml-modules/tezos/010-PtGRANAD-test-helpers.nix')
-rw-r--r--pkgs/development/ocaml-modules/tezos/010-PtGRANAD-test-helpers.nix39
1 files changed, 0 insertions, 39 deletions
diff --git a/pkgs/development/ocaml-modules/tezos/010-PtGRANAD-test-helpers.nix b/pkgs/development/ocaml-modules/tezos/010-PtGRANAD-test-helpers.nix
deleted file mode 100644
index fe2664333e3..00000000000
--- a/pkgs/development/ocaml-modules/tezos/010-PtGRANAD-test-helpers.nix
+++ /dev/null
@@ -1,39 +0,0 @@
-{ lib
-, buildDunePackage
-, tezos-stdlib
-, tezos-stdlib-unix
-, tezos-base
-, tezos-shell-services
-, tezos-protocol-environment
-, tezos-protocol-010-PtGRANAD
-, tezos-protocol-010-PtGRANAD-parameters
-, tezos-client-010-PtGRANAD
-, alcotest-lwt
-}:
-
-buildDunePackage {
-  pname = "tezos-010-PtGRANAD-test-helpers";
-  inherit (tezos-stdlib) version useDune2;
-  src = "${tezos-stdlib.base_src}/src/proto_010_PtGRANAD/lib_protocol/test/helpers";
-
-  propagatedBuildInputs = [
-    tezos-base
-    tezos-stdlib-unix
-    tezos-shell-services
-    tezos-protocol-environment
-    tezos-protocol-010-PtGRANAD
-    tezos-protocol-010-PtGRANAD-parameters
-    tezos-client-010-PtGRANAD
-    alcotest-lwt
-  ];
-
-  checkInputs = [
-    alcotest-lwt
-  ];
-
-  doCheck = true;
-
-  meta = tezos-stdlib.meta // {
-    description = "Tezos/Protocol: protocol testing framework";
-  };
-}