Files
2026-05-05 09:16:33 +02:00

25 lines
416 B
Nix

{
lib,
buildDunePackage,
lwd,
notty-community,
}:
buildDunePackage {
pname = "nottui";
inherit (lwd) version src;
propagatedBuildInputs = [
lwd
notty-community
];
meta = {
description = "UI toolkit for the terminal built on top of Notty and Lwd";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.alizter ];
homepage = "https://github.com/let-def/lwd";
};
}