Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib, vscode-utils }: 2 3vscode-utils.buildVscodeMarketplaceExtension { 4 mktplcRef = { 5 name = "lldb-dap"; 6 publisher = "llvm-vs-code-extensions"; 7 version = "0.2.15"; 8 hash = "sha256-Xr/TUpte9JqdvQ8eoD0l8ztg0tR8qwX/Ju1eVU6Xc0s="; 9 }; 10 11 meta = { 12 description = "Debugging with LLDB in Visual Studio Code"; 13 downloadPage = "hhttps://marketplace.visualstudio.com/items?itemName=llvm-vs-code-extensions.lldb-dap"; 14 homepage = "https://github.com/llvm/llvm-project"; 15 license = lib.licenses.asl20; 16 maintainers = [ lib.maintainers.m0nsterrr ]; 17 }; 18}