Vincent Laporte 0934d96508 ocamlPackages.lwd: 0.3 → 0.4
ocamlPackages.nottui-unix: init at 0.4
2025-08-14 07:47:57 +02:00

26 lines
375 B
Nix

{
lib,
buildDunePackage,
lwd,
lwt,
nottui,
}:
buildDunePackage {
pname = "nottui-lwt";
inherit (lwd) version src;
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";
};
}