about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules
diff options
context:
space:
mode:
authorsternenseemann <0rpkxez4ksa01gb3typccl0i@systemli.org>2020-12-30 01:11:38 +0100
committersternenseemann <0rpkxez4ksa01gb3typccl0i@systemli.org>2020-12-30 01:12:38 +0100
commiteac6fcc16c9a5b9e9a5591cc04f1989bbec9f6f4 (patch)
treef5506cd45e5ea12396e1c8a5eb33d7a5e7eb00db /pkgs/development/ocaml-modules
parentb15ba2369fbfbafd3dc18dbe6b91411061145315 (diff)
downloadnixlib-eac6fcc16c9a5b9e9a5591cc04f1989bbec9f6f4.tar
nixlib-eac6fcc16c9a5b9e9a5591cc04f1989bbec9f6f4.tar.gz
nixlib-eac6fcc16c9a5b9e9a5591cc04f1989bbec9f6f4.tar.bz2
nixlib-eac6fcc16c9a5b9e9a5591cc04f1989bbec9f6f4.tar.lz
nixlib-eac6fcc16c9a5b9e9a5591cc04f1989bbec9f6f4.tar.xz
nixlib-eac6fcc16c9a5b9e9a5591cc04f1989bbec9f6f4.tar.zst
nixlib-eac6fcc16c9a5b9e9a5591cc04f1989bbec9f6f4.zip
ocamlPackages.mirage-console-unix: init at 4.0.0
Diffstat (limited to 'pkgs/development/ocaml-modules')
-rw-r--r--pkgs/development/ocaml-modules/mirage-console/unix.nix17
1 files changed, 17 insertions, 0 deletions
diff --git a/pkgs/development/ocaml-modules/mirage-console/unix.nix b/pkgs/development/ocaml-modules/mirage-console/unix.nix
new file mode 100644
index 000000000000..dea613511a29
--- /dev/null
+++ b/pkgs/development/ocaml-modules/mirage-console/unix.nix
@@ -0,0 +1,17 @@
+{ buildDunePackage, mirage-console, lwt, cstruct, cstruct-lwt }:
+
+buildDunePackage {
+  pname = "mirage-console-unix";
+
+  inherit (mirage-console) version src useDune2 minimumOCamlVersion;
+
+  propagatedBuildInputs = [
+    mirage-console
+    cstruct
+    cstruct-lwt
+  ];
+
+  meta = mirage-console.meta // {
+    description = "Implementation of Mirage consoles for Unix";
+  };
+}