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