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

This commit is contained in:
Pol Dellaiera
2025-06-23 16:02:53 +02:00
committed by GitHub
2 changed files with 18 additions and 0 deletions

View File

@@ -3204,6 +3204,8 @@ let
};
};
miguelsolorio.min-theme = callPackage ./miguelsolorio.min-theme { };
mikestead.dotenv = buildVscodeMarketplaceExtension {
mktplcRef = {
name = "dotenv";

View File

@@ -0,0 +1,16 @@
{ lib, vscode-utils }:
vscode-utils.buildVscodeMarketplaceExtension {
mktplcRef = {
name = "min-theme";
publisher = "miguelsolorio";
version = "1.5.0";
hash = "sha256-DF/9OlWmjmnZNRBs2hk0qEWN38RcgacdVl9e75N8ZMY=";
};
meta = {
description = "Minimal theme for VS Code that comes in dark and light";
downloadPage = "https://marketplace.visualstudio.com/items?itemName=miguelsolorio.min-theme";
homepage = "https://github.com/miguelsolorio/min-theme";
license = lib.licenses.mit;
};
}