vscode-extensions.ph-hawkins.arc-plus: init at 1.0.2 (#416997)

This commit is contained in:
Pol Dellaiera
2025-06-18 22:52:18 +02:00
committed by GitHub
2 changed files with 19 additions and 0 deletions
@@ -3844,6 +3844,8 @@ let
oops418.nix-env-picker = callPackage ./oops418.nix-env-picker { };
ph-hawkins.arc-plus = callPackage ./ph-hawkins.arc-plus { };
phind.phind = buildVscodeMarketplaceExtension {
mktplcRef = {
name = "phind";
@@ -0,0 +1,17 @@
{ lib, vscode-utils }:
vscode-utils.buildVscodeMarketplaceExtension {
mktplcRef = {
name = "arc-plus";
publisher = "ph-hawkins";
version = "1.0.2";
hash = "sha256-kI8UHo16PbOSLXBG9du4Ceb+aorVGGOH17Vg6ufy/D0=";
};
meta = {
description = "UI theme based on the Arc GTK theme while also retaining some elements of the default VS Code theme";
downloadPage = "https://marketplace.visualstudio.com/items?itemName=ph-hawkins.arc-plus";
homepage = "https://github.com/phil-harmoniq/arc-plus";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ aduh95 ];
};
}