From 8bcc5c9e2551d9b8e5d6599862139da449b9ad11 Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Mon, 12 Aug 2024 06:39:53 +0200 Subject: [PATCH] ocamlPackages.mirage-console-unix: remove at 5.1.0 --- .../ocaml-modules/mirage-console/unix.nix | 19 ------------------- pkgs/top-level/ocaml-packages.nix | 2 -- 2 files changed, 21 deletions(-) delete mode 100644 pkgs/development/ocaml-modules/mirage-console/unix.nix diff --git a/pkgs/development/ocaml-modules/mirage-console/unix.nix b/pkgs/development/ocaml-modules/mirage-console/unix.nix deleted file mode 100644 index 341df7927ed3..000000000000 --- a/pkgs/development/ocaml-modules/mirage-console/unix.nix +++ /dev/null @@ -1,19 +0,0 @@ -{ buildDunePackage, mirage-console, cstruct, cstruct-lwt }: - -buildDunePackage { - pname = "mirage-console-unix"; - - inherit (mirage-console) version src; - - duneVersion = "3"; - - propagatedBuildInputs = [ - mirage-console - cstruct - cstruct-lwt - ]; - - meta = mirage-console.meta // { - description = "Implementation of Mirage consoles for Unix"; - }; -} diff --git a/pkgs/top-level/ocaml-packages.nix b/pkgs/top-level/ocaml-packages.nix index 27250510a45c..8fb8986dd9b0 100644 --- a/pkgs/top-level/ocaml-packages.nix +++ b/pkgs/top-level/ocaml-packages.nix @@ -1123,8 +1123,6 @@ let mirage-console = callPackage ../development/ocaml-modules/mirage-console { }; - mirage-console-unix = callPackage ../development/ocaml-modules/mirage-console/unix.nix { }; - mirage-crypto = callPackage ../development/ocaml-modules/mirage-crypto { }; mirage-crypto-ec = callPackage ../development/ocaml-modules/mirage-crypto/ec.nix { };