biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / ocaml-modules / mirage-console / unix.nix
blobca8c2aeac5e319f2198bacfc890605cf5f299b3f
1 { buildDunePackage, mirage-console, lwt, cstruct, cstruct-lwt }:
3 buildDunePackage {
4   pname = "mirage-console-unix";
6   inherit (mirage-console) version src;
8   duneVersion = "3";
10   propagatedBuildInputs = [
11     mirage-console
12     cstruct
13     cstruct-lwt
14   ];
16   meta = mirage-console.meta // {
17     description = "Implementation of Mirage consoles for Unix";
18   };