nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 lib,
3 buildDunePackage,
4 lwd,
5 lwt,
6 nottui,
7}:
8
9buildDunePackage {
10 pname = "nottui-lwt";
11
12 inherit (lwd) version src;
13
14 propagatedBuildInputs = [
15 lwt
16 nottui
17 ];
18
19 meta = {
20 description = "Run Nottui UIs in Lwt";
21 license = lib.licenses.mit;
22 maintainers = [ lib.maintainers.alizter ];
23 homepage = "https://github.com/let-def/lwd";
24 };
25}