nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 lib,
3 buildDunePackage,
4 lwd,
5 nottui,
6}:
7
8buildDunePackage {
9 pname = "nottui-pretty";
10
11 inherit (lwd) version src;
12
13 minimalOCamlVersion = "4.08";
14 duneVersion = "3";
15
16 propagatedBuildInputs = [ nottui ];
17
18 meta = with lib; {
19 description = "Pretty-printer based on PPrint rendering UIs";
20 license = licenses.mit;
21 maintainers = [ maintainers.alizter ];
22 homepage = "https://github.com/let-def/lwd";
23 };
24}