lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

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

authored by

Pol Dellaiera and committed by
GitHub
7ee35436 7c2d60bf

+19
+2
pkgs/applications/editors/vscode/extensions/default.nix
··· 3844 3844 3845 3845 oops418.nix-env-picker = callPackage ./oops418.nix-env-picker { }; 3846 3846 3847 + ph-hawkins.arc-plus = callPackage ./ph-hawkins.arc-plus { }; 3848 + 3847 3849 phind.phind = buildVscodeMarketplaceExtension { 3848 3850 mktplcRef = { 3849 3851 name = "phind";
+17
pkgs/applications/editors/vscode/extensions/ph-hawkins.arc-plus/default.nix
··· 1 + { lib, vscode-utils }: 2 + 3 + vscode-utils.buildVscodeMarketplaceExtension { 4 + mktplcRef = { 5 + name = "arc-plus"; 6 + publisher = "ph-hawkins"; 7 + version = "1.0.2"; 8 + hash = "sha256-kI8UHo16PbOSLXBG9du4Ceb+aorVGGOH17Vg6ufy/D0="; 9 + }; 10 + meta = { 11 + description = "UI theme based on the Arc GTK theme while also retaining some elements of the default VS Code theme"; 12 + downloadPage = "https://marketplace.visualstudio.com/items?itemName=ph-hawkins.arc-plus"; 13 + homepage = "https://github.com/phil-harmoniq/arc-plus"; 14 + license = lib.licenses.mit; 15 + maintainers = with lib.maintainers; [ aduh95 ]; 16 + }; 17 + }