vscode-extensions.miguelsolorio.min-theme: init at 1.5.0 (#419254)

authored by Pol Dellaiera and committed by GitHub 786d64fb ddbf495e

+18
+2
pkgs/applications/editors/vscode/extensions/default.nix
··· 3204 }; 3205 }; 3206 3207 mikestead.dotenv = buildVscodeMarketplaceExtension { 3208 mktplcRef = { 3209 name = "dotenv";
··· 3204 }; 3205 }; 3206 3207 + miguelsolorio.min-theme = callPackage ./miguelsolorio.min-theme { }; 3208 + 3209 mikestead.dotenv = buildVscodeMarketplaceExtension { 3210 mktplcRef = { 3211 name = "dotenv";
+16
pkgs/applications/editors/vscode/extensions/miguelsolorio.min-theme/default.nix
···
··· 1 + { lib, vscode-utils }: 2 + 3 + vscode-utils.buildVscodeMarketplaceExtension { 4 + mktplcRef = { 5 + name = "min-theme"; 6 + publisher = "miguelsolorio"; 7 + version = "1.5.0"; 8 + hash = "sha256-DF/9OlWmjmnZNRBs2hk0qEWN38RcgacdVl9e75N8ZMY="; 9 + }; 10 + meta = { 11 + description = "Minimal theme for VS Code that comes in dark and light"; 12 + downloadPage = "https://marketplace.visualstudio.com/items?itemName=miguelsolorio.min-theme"; 13 + homepage = "https://github.com/miguelsolorio/min-theme"; 14 + license = lib.licenses.mit; 15 + }; 16 + }