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

vscode-extensions.james-yu.latex-workshop: 10.9.1 -> 10.10.0 and moved to own directory

+22 -16
+1 -16
pkgs/applications/editors/vscode/extensions/default.nix
··· 2566 2566 2567 2567 jackmacwindows.craftos-pc = callPackage ./jackmacwindows.craftos-pc { }; 2568 2568 2569 - james-yu.latex-workshop = buildVscodeMarketplaceExtension { 2570 - mktplcRef = { 2571 - name = "latex-workshop"; 2572 - publisher = "James-Yu"; 2573 - version = "10.9.1"; 2574 - sha256 = "sha256-R+tJ3k71rlzfxtz4Dib6JiU7Sipq/UTP38ERAhojY7c="; 2575 - }; 2576 - meta = { 2577 - changelog = "https://marketplace.visualstudio.com/items/James-Yu.latex-workshop/changelog"; 2578 - description = "LaTeX Workshop Extension"; 2579 - downloadPage = "https://marketplace.visualstudio.com/items?itemName=James-Yu.latex-workshop"; 2580 - homepage = "https://github.com/James-Yu/LaTeX-Workshop"; 2581 - license = lib.licenses.mit; 2582 - maintainers = [ ]; 2583 - }; 2584 - }; 2569 + james-yu.latex-workshop = callPackage ./james-yu.latex-workshop { }; 2585 2570 2586 2571 jamesyang999.vscode-emacs-minimum = buildVscodeMarketplaceExtension { 2587 2572 mktplcRef = {
+21
pkgs/applications/editors/vscode/extensions/james-yu.latex-workshop/default.nix
··· 1 + { 2 + lib, 3 + vscode-utils, 4 + }: 5 + 6 + vscode-utils.buildVscodeMarketplaceExtension { 7 + mktplcRef = { 8 + name = "latex-workshop"; 9 + publisher = "James-Yu"; 10 + version = "10.10.0"; 11 + hash = "sha256-3Rdoer5n2jf8PLRGgg/nqGRoRwQLCdcOXkmKay5uDWE="; 12 + }; 13 + meta = { 14 + changelog = "https://marketplace.visualstudio.com/items/James-Yu.latex-workshop/changelog"; 15 + description = "LaTeX Workshop Extension"; 16 + downloadPage = "https://marketplace.visualstudio.com/items?itemName=James-Yu.latex-workshop"; 17 + homepage = "https://github.com/James-Yu/LaTeX-Workshop"; 18 + license = lib.licenses.mit; 19 + maintainers = [ lib.maintainers.therobot2105 ]; 20 + }; 21 + }