Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 lib, 3 vscode-utils, 4}: 5vscode-utils.buildVscodeMarketplaceExtension { 6 mktplcRef = { 7 name = "vscode-sqlite3-editor"; 8 publisher = "yy0931"; 9 version = "1.0.207"; 10 hash = "sha256-HToO43MnqJlWcKx4O5C0b7RXyeKY5PzxMY5/3cNOtgE="; 11 }; 12 meta = { 13 changelog = "https://marketplace.visualstudio.com/items/yy0931.vscode-sqlite3-editor/changelog"; 14 description = "SQLite3 Editor for VSCode"; 15 downloadPage = "https://marketplace.visualstudio.com/items?itemName=yy0931.vscode-sqlite3-editor"; 16 homepage = "https://github.com/yy0931/sqlite3-editor"; 17 license = lib.licenses.gpl3Only; 18 maintainers = [ lib.maintainers.ch4og ]; 19 }; 20}