summary refs log blame commit diff
path: root/pkgs/development/ocaml-modules/mirage-console/unix.nix
blob: ca8c2aeac5e319f2198bacfc890605cf5f299b3f (plain) (tree)
1
2
3
4
5
6
7
8
9




                                                                
                                       
 

                    









                                                               
{ buildDunePackage, mirage-console, lwt, 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";
  };
}