about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/tezos/stdlib.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/ocaml-modules/tezos/stdlib.nix')
-rw-r--r--pkgs/development/ocaml-modules/tezos/stdlib.nix64
1 files changed, 0 insertions, 64 deletions
diff --git a/pkgs/development/ocaml-modules/tezos/stdlib.nix b/pkgs/development/ocaml-modules/tezos/stdlib.nix
deleted file mode 100644
index 31dfd43b6153c..0000000000000
--- a/pkgs/development/ocaml-modules/tezos/stdlib.nix
+++ /dev/null
@@ -1,64 +0,0 @@
-{ lib
-, fetchFromGitLab
-, buildDunePackage
-, hex
-, lwt
-, zarith
-, alcotest
-, alcotest-lwt
-, crowbar
-, bigstring
-, lwt_log
-, ppx_inline_test
-, qcheck-alcotest
-, tezos-test-helpers
-}:
-
-buildDunePackage rec {
-  pname = "tezos-stdlib";
-  version = "11.0";
-  base_src = fetchFromGitLab {
-    owner = "tezos";
-    repo = "tezos";
-    rev = "v${version}";
-    sha256 = "uUYd1DxH2bdCQlevQt3oGxvg0ai5EiCD2mti5SiueU8=";
-  };
-
-  src = "${base_src}/src/lib_stdlib";
-
-  minimalOCamlVersion = "4.08";
-
-  useDune2 = true;
-
-  preBuild = ''
-    rm -rf vendors
-  '';
-
-  propagatedBuildInputs = [
-    hex
-    lwt
-    zarith
-    ppx_inline_test
-  ];
-
-  checkInputs = [
-    bigstring
-    lwt_log
-    alcotest
-    alcotest-lwt
-    crowbar
-    bigstring
-    lwt_log
-    qcheck-alcotest
-    # tezos-test-helpers
-  ];
-
-  # circular dependency if we add this
-  doCheck = false;
-
-  meta = {
-    description = "Tezos: yet-another local-extension of the OCaml standard library";
-    license = lib.licenses.mit;
-    maintainers = [ lib.maintainers.ulrikstrid ];
-  };
-}