about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/tezos/stdlib-unix.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/ocaml-modules/tezos/stdlib-unix.nix')
-rw-r--r--pkgs/development/ocaml-modules/tezos/stdlib-unix.nix33
1 files changed, 0 insertions, 33 deletions
diff --git a/pkgs/development/ocaml-modules/tezos/stdlib-unix.nix b/pkgs/development/ocaml-modules/tezos/stdlib-unix.nix
deleted file mode 100644
index 1b275d03dff9c..0000000000000
--- a/pkgs/development/ocaml-modules/tezos/stdlib-unix.nix
+++ /dev/null
@@ -1,33 +0,0 @@
-{ lib
-, buildDunePackage
-, tezos-stdlib
-, tezos-event-logging
-, re
-, ptime
-, mtime
-, ipaddr
-, ezjsonm
-, fmt
-}:
-
-buildDunePackage {
-  pname = "tezos-stdlib-unix";
-  inherit (tezos-stdlib) version useDune2;
-  src = "${tezos-stdlib.base_src}/src/lib_stdlib_unix";
-
-  propagatedBuildInputs = [
-    tezos-event-logging
-    re
-    ptime
-    mtime
-    ipaddr
-    ezjsonm
-    fmt
-  ];
-
-  doCheck = true;
-
-  meta = tezos-stdlib.meta // {
-    description = "Tezos: yet-another local-extension of the OCaml standard library (unix-specific fragment)";
-  };
-}