summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/tezos/010-PtGRANAD-test-helpers.nix
diff options
context:
space:
mode:
authorUlrik Strid <ulrik.strid@outlook.com>2022-04-20 09:31:14 +0200
committerYt <raphael@megzari.com>2022-04-27 22:23:09 -0400
commit6cf368ed0e35e71118a35d8896f64e0d00c5161e (patch)
tree0a7fb100cb2d75526892ffa7f5b187453a9a9ea5 /pkgs/development/ocaml-modules/tezos/010-PtGRANAD-test-helpers.nix
parent2627bb20f913f1b3a982758383f7dd3192c7f47f (diff)
downloadnixpkgs-6cf368ed0e35e71118a35d8896f64e0d00c5161e.tar
nixpkgs-6cf368ed0e35e71118a35d8896f64e0d00c5161e.tar.gz
nixpkgs-6cf368ed0e35e71118a35d8896f64e0d00c5161e.tar.bz2
nixpkgs-6cf368ed0e35e71118a35d8896f64e0d00c5161e.tar.lz
nixpkgs-6cf368ed0e35e71118a35d8896f64e0d00c5161e.tar.xz
nixpkgs-6cf368ed0e35e71118a35d8896f64e0d00c5161e.tar.zst
nixpkgs-6cf368ed0e35e71118a35d8896f64e0d00c5161e.zip
ocamlPackages.tezos: remove
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";
-  };
-}