about summary refs log tree commit diff
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2023-08-29 07:08:22 +0200
committerVincent Laporte <Vincent.Laporte@gmail.com>2023-08-29 07:30:11 +0200
commitbcdc6b151ba17d2737e8a5c8a10311883b6aff22 (patch)
tree71d208b1d919675ce9e54b0bc2e1364e9b6af752
parentd80d16585dd2930472da55758f83a89ab7a412ef (diff)
ocamlPackages.mirage-stack: remove at 4.0.0
-rw-r--r--pkgs/development/ocaml-modules/mirage-stack/default.nix22
-rw-r--r--pkgs/top-level/ocaml-packages.nix2
2 files changed, 0 insertions, 24 deletions
diff --git a/pkgs/development/ocaml-modules/mirage-stack/default.nix b/pkgs/development/ocaml-modules/mirage-stack/default.nix
deleted file mode 100644
index 94a65548531f4..0000000000000
--- a/pkgs/development/ocaml-modules/mirage-stack/default.nix
+++ /dev/null
@@ -1,22 +0,0 @@
-{ lib, buildDunePackage, fetchurl, tcpip }:
-
-buildDunePackage rec {
-  pname = "mirage-stack";
-  version = "4.0.0";
-  duneVersion = "3";
-
-  src = fetchurl {
-    url = "https://github.com/mirage/mirage-stack/releases/download/v${version}/mirage-stack-v${version}.tbz";
-    hash = "sha256-q70zGQvT5KTqvL37bZjSD8Su0P72KCUesyfWJcI8zPw=";
-  };
-
-  propagatedBuildInputs = [ tcpip ];
-
-  meta = {
-    description = "MirageOS signatures for network stacks";
-    homepage = "https://github.com/mirage/mirage-stack";
-    license = lib.licenses.isc;
-    maintainers = [ lib.maintainers.vbgl ];
-  };
-}
-
diff --git a/pkgs/top-level/ocaml-packages.nix b/pkgs/top-level/ocaml-packages.nix
index b50358e4f2ecc..ad03d1c14d5a9 100644
--- a/pkgs/top-level/ocaml-packages.nix
+++ b/pkgs/top-level/ocaml-packages.nix
@@ -1056,8 +1056,6 @@ let
 
     mirage-runtime = callPackage ../development/ocaml-modules/mirage/runtime.nix { };
 
-    mirage-stack = callPackage ../development/ocaml-modules/mirage-stack { };
-
     mirage-time = callPackage ../development/ocaml-modules/mirage-time { };
 
     mirage-time-unix = callPackage ../development/ocaml-modules/mirage-time/unix.nix { };