···108108 };
109109 };
110110111111- meta = {
111111+ meta = with lib; {
112112 homepage = "https://github.com/tree-sitter/tree-sitter";
113113 description = "A parser generator tool and an incremental parsing library";
114114 longDescription = ''
···122122 * Robust enough to provide useful results even in the presence of syntax errors
123123 * Dependency-free so that the runtime library (which is written in pure C) can be embedded in any application
124124 '';
125125- license = lib.licenses.mit;
126126- maintainers = with lib.maintainers; [ Profpatsch ];
125125+ license = licenses.mit;
126126+ maintainers = with maintainers; [ Profpatsch ];
127127 # Aarch has test failures with how tree-sitter compiles the generated C files
128128 broken = stdenv.isAarch64;
129129 };
130130-131130}