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