2021-01-05 17:05:55 +00:00
|
|
|
{ buildDunePackage, mirage-console, lwt, cstruct, cstruct-lwt }:
|
|
|
|
|
|
|
|
buildDunePackage {
|
|
|
|
pname = "mirage-console-unix";
|
|
|
|
|
2022-07-14 12:49:19 +00:00
|
|
|
inherit (mirage-console) version src;
|
2021-01-05 17:05:55 +00:00
|
|
|
|
2023-03-30 22:05:00 +00:00
|
|
|
duneVersion = "3";
|
|
|
|
|
2021-01-05 17:05:55 +00:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
mirage-console
|
|
|
|
cstruct
|
|
|
|
cstruct-lwt
|
|
|
|
];
|
|
|
|
|
|
|
|
meta = mirage-console.meta // {
|
|
|
|
description = "Implementation of Mirage consoles for Unix";
|
|
|
|
};
|
|
|
|
}
|