nixpkgs/pkgs/development/ocaml-modules/mirage-console/unix.nix
2022-06-29 05:48:38 +01:00

18 lines
346 B
Nix

{ buildDunePackage, mirage-console, lwt, cstruct, cstruct-lwt }:
buildDunePackage {
pname = "mirage-console-unix";
inherit (mirage-console) version src;
propagatedBuildInputs = [
mirage-console
cstruct
cstruct-lwt
];
meta = mirage-console.meta // {
description = "Implementation of Mirage consoles for Unix";
};
}