about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/tezos/sapling.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/ocaml-modules/tezos/sapling.nix')
-rw-r--r--pkgs/development/ocaml-modules/tezos/sapling.nix35
1 files changed, 0 insertions, 35 deletions
diff --git a/pkgs/development/ocaml-modules/tezos/sapling.nix b/pkgs/development/ocaml-modules/tezos/sapling.nix
deleted file mode 100644
index 59e61d49af0cf..0000000000000
--- a/pkgs/development/ocaml-modules/tezos/sapling.nix
+++ /dev/null
@@ -1,35 +0,0 @@
-{ lib
-, buildDunePackage
-, ocaml
-, tezos-stdlib
-, tezos-crypto
-, tezos-rust-libs
-, tezos-base-test-helpers
-, alcotest-lwt
-}:
-
-buildDunePackage {
-  pname = "tezos-sapling";
-  inherit (tezos-stdlib) version useDune2;
-  src = "${tezos-stdlib.base_src}/src/lib_sapling";
-
-  propagatedBuildInputs = [
-    tezos-crypto
-    tezos-rust-libs
-  ];
-
-  checkInputs = [
-    alcotest-lwt
-    tezos-base-test-helpers
-  ];
-
-  # requires the "zcash-params" files
-  doCheck = false;
-
-  # This is a hack to work around the hack used in the dune files
-  OPAM_SWITCH_PREFIX = "${tezos-rust-libs}";
-
-  meta = tezos-stdlib.meta // {
-    description = "Tezos/Protocol: economic-protocol definition";
-  };
-}