about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/wodan/unix.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/ocaml-modules/wodan/unix.nix')
-rw-r--r--pkgs/development/ocaml-modules/wodan/unix.nix31
1 files changed, 0 insertions, 31 deletions
diff --git a/pkgs/development/ocaml-modules/wodan/unix.nix b/pkgs/development/ocaml-modules/wodan/unix.nix
deleted file mode 100644
index bd694bce801b3..0000000000000
--- a/pkgs/development/ocaml-modules/wodan/unix.nix
+++ /dev/null
@@ -1,31 +0,0 @@
-{ lib, buildDunePackage, base64, benchmark, csv, cmdliner, wodan, afl-persistent
-, mirage-block-ramdisk, mirage-block-unix }:
-
-buildDunePackage rec {
-  outputs = [ "bin" "out" ];
-  pname = "wodan-unix";
-  inherit (wodan) version src useDune2;
-
-  propagatedBuildInputs = [
-    afl-persistent
-    base64
-    benchmark
-    cmdliner
-    csv
-    /* io-page-unix */
-    mirage-block-ramdisk
-    mirage-block-unix
-    wodan
-  ];
-
-  postInstall = ''
-    moveToOutput bin "''${!outputBin}"
-  '';
-
-  meta = wodan.meta // {
-    broken = true; # io-page-unix is no longer available
-    description = "Wodan clients with Unix integration";
-    mainProgram = "wodanc";
-  };
-
-}