nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 lib,
3 buildDunePackage,
4 lwd,
5 notty,
6}:
7
8buildDunePackage {
9 pname = "nottui";
10
11 inherit (lwd) version src;
12
13 propagatedBuildInputs = [
14 lwd
15 notty
16 ];
17
18 meta = {
19 description = "UI toolkit for the terminal built on top of Notty and Lwd";
20 license = lib.licenses.mit;
21 maintainers = [ lib.maintainers.alizter ];
22 homepage = "https://github.com/let-def/lwd";
23 };
24}