Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib, vscode-utils }: 2 3vscode-utils.buildVscodeMarketplaceExtension { 4 mktplcRef = { 5 name = "solargraph"; 6 publisher = "castwide"; 7 version = "0.25.0"; 8 hash = "sha256-5SmCkHGCS8dYfdSm3NRk091jH44m+7kkj+VL84YKM4g="; 9 }; 10 meta = { 11 description = "Ruby language server featuring code completion, intellisense, and inline documentation"; 12 downloadPage = "https://marketplace.visualstudio.com/items?itemName=castwide.solargraph"; 13 homepage = "https://github.com/castwide/vscode-solargraph"; 14 license = lib.licenses.mit; 15 maintainers = [ lib.maintainers.bbenno ]; 16 }; 17}