about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/lwd/nottui-pretty.nix
blob: 9a0267379dc2ba34cb04c77aff588b157ce08587 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ lib, buildDunePackage, lwd, nottui }:

buildDunePackage {
  pname = "nottui-pretty";

  inherit (lwd) version src;

  minimalOCamlVersion = "4.08";
  duneVersion = "3";

  propagatedBuildInputs = [ nottui ];

  meta = with lib; {
    description = "A pretty-printer based on PPrint rendering UIs";
    license = licenses.mit;
    maintainers = [ maintainers.alizter ];
    homepage = "https://github.com/let-def/lwd";
  };
}