Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

vscode-extensions.jasew.anki: init at 1.3.5 (#427914)

authored by Pol Dellaiera and committed by GitHub e7d3e2b8 d654efd1

Changed files
+23
pkgs
applications
editors
vscode
extensions
+2
pkgs/applications/editors/vscode/extensions/default.nix
··· 2515 2515 }; 2516 2516 }; 2517 2517 2518 + jasew.anki = callPackage ./jasew.anki { }; 2519 + 2518 2520 jbockle.jbockle-format-files = buildVscodeMarketplaceExtension { 2519 2521 mktplcRef = { 2520 2522 name = "jbockle-format-files";
+21
pkgs/applications/editors/vscode/extensions/jasew.anki/default.nix
··· 1 + { 2 + lib, 3 + vscode-utils, 4 + }: 5 + 6 + vscode-utils.buildVscodeMarketplaceExtension { 7 + mktplcRef = { 8 + publisher = "jasew"; 9 + name = "anki"; 10 + version = "1.3.5"; 11 + hash = "sha256-QPuafIelmhdno/E2zr6NQChv0qjfjMFwx7v0Xat/gDc="; 12 + }; 13 + 14 + meta = { 15 + description = "Extension for interacting and sending cards to Anki"; 16 + downloadPage = "https://marketplace.visualstudio.com/items?itemName=jasew.anki"; 17 + homepage = "https://github.com/jasonwilliams/anki"; 18 + license = lib.licenses.mit; 19 + maintainers = [ lib.maintainers.ethancedwards8 ]; 20 + }; 21 + }