22 lines
380 B
Nix
22 lines
380 B
Nix
|
|
{
|
||
|
|
lib,
|
||
|
|
buildDunePackage,
|
||
|
|
lwd,
|
||
|
|
nottui,
|
||
|
|
}:
|
||
|
|
|
||
|
|
buildDunePackage {
|
||
|
|
pname = "nottui-pretty";
|
||
|
|
|
||
|
|
inherit (lwd) version src;
|
||
|
|
|
||
|
|
propagatedBuildInputs = [ nottui ];
|
||
|
|
|
||
|
|
meta = with lib; {
|
||
|
|
description = "Pretty-printer based on PPrint rendering UIs";
|
||
|
|
license = licenses.mit;
|
||
|
|
maintainers = [ maintainers.alizter ];
|
||
|
|
homepage = "https://github.com/let-def/lwd";
|
||
|
|
};
|
||
|
|
}
|