···108 };
109 };
110111- meta = {
112 homepage = "https://github.com/tree-sitter/tree-sitter";
113 description = "A parser generator tool and an incremental parsing library";
114 longDescription = ''
···122 * Robust enough to provide useful results even in the presence of syntax errors
123 * Dependency-free so that the runtime library (which is written in pure C) can be embedded in any application
124 '';
125- license = lib.licenses.mit;
126- maintainers = with lib.maintainers; [ Profpatsch ];
127 # Aarch has test failures with how tree-sitter compiles the generated C files
128 broken = stdenv.isAarch64;
129 };
130-131}
···108 };
109 };
110111+ meta = with lib; {
112 homepage = "https://github.com/tree-sitter/tree-sitter";
113 description = "A parser generator tool and an incremental parsing library";
114 longDescription = ''
···122 * Robust enough to provide useful results even in the presence of syntax errors
123 * Dependency-free so that the runtime library (which is written in pure C) can be embedded in any application
124 '';
125+ license = licenses.mit;
126+ maintainers = with maintainers; [ Profpatsch ];
127 # Aarch has test failures with how tree-sitter compiles the generated C files
128 broken = stdenv.isAarch64;
129 };
0130}