vscode-extensions.ph-hawkins.arc-plus: init at 1.0.2

This commit is contained in:
Antoine du Hamel 2025-06-15 17:22:16 +02:00
parent 5395fb3ab3
commit e5c4b01fc8
No known key found for this signature in database
GPG Key ID: 21D900FFDB233756
2 changed files with 19 additions and 0 deletions

View File

@ -3842,6 +3842,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";

View File

@ -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 ];
};
}