summaryrefslogtreecommitdiffstats
path: root/pkgs/development/ocaml-modules/lwd/nottui-lwt.nix
blob: 09a4a8ba228ebdda0c33b2c9592de243aca4bec5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ lib, buildDunePackage, lwd, lwt, nottui }:

buildDunePackage {
  pname = "nottui-lwt";

  inherit (lwd) version src;

  minimalOCamlVersion = "4.08";
  duneVersion = "3";

  propagatedBuildInputs = [ lwt nottui ];

  meta = with lib; {
    description = "Run Nottui UIs in Lwt";
    license = licenses.mit;
    maintainers = [ maintainers.alizter ];
    homepage = "https://github.com/let-def/lwd";
  };
}