18 lines
375 B
Nix
18 lines
375 B
Nix
|
{ 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";
|
||
|
};
|
||
|
}
|