mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
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";
|
|
};
|
|
}
|