summaryrefslogtreecommitdiffstats
path: root/pkgs/misc
diff options
context:
space:
mode:
authorJakub Kozłowski <kubukoz@gmail.com>2021-03-12 01:14:51 +0100
committerJakub Kozłowski <kubukoz@gmail.com>2021-03-25 19:12:01 +0100
commit9dc90969be8ffeff156fbf6a176f2863b5cfca38 (patch)
treede07a395823f9dab509f77dadb2d9f50957f520f /pkgs/misc
parentd7c188f61d214ee43f5d864ca89048d43e86ad01 (diff)
vscode-extensions.github.vscode-pull-request-github: init at 0.22.0
Diffstat (limited to 'pkgs/misc')
-rw-r--r--pkgs/misc/vscode-extensions/default.nix40
1 files changed, 27 insertions, 13 deletions
diff --git a/pkgs/misc/vscode-extensions/default.nix b/pkgs/misc/vscode-extensions/default.nix
index e127fdb3f82f..d281b165445f 100644
--- a/pkgs/misc/vscode-extensions/default.nix
+++ b/pkgs/misc/vscode-extensions/default.nix
@@ -381,19 +381,33 @@ let
};
};
- github.github-vscode-theme = buildVscodeMarketplaceExtension {
- mktplcRef = {
- name = "github-vscode-theme";
- publisher = "github";
- version = "1.1.5";
- sha256 = "10f0098cce026d1f0c855fb7a66ea60b5d8acd2b76126ea94fe7361e49cd9ed2";
- };
- meta = with lib; {
- description = "GitHub theme for VS Code";
- downloadPage = "https://marketplace.visualstudio.com/items?itemName=GitHub.github-vscode-theme";
- homepage = "https://github.com/primer/github-vscode-theme";
- license = licenses.mit;
- maintainers = with maintainers; [ hugolgst ];
+ github = {
+ github-vscode-theme = buildVscodeMarketplaceExtension {
+ mktplcRef = {
+ name = "github-vscode-theme";
+ publisher = "github";
+ version = "1.1.5";
+ sha256 =
+ "10f0098cce026d1f0c855fb7a66ea60b5d8acd2b76126ea94fe7361e49cd9ed2";
+ };
+ meta = with lib; {
+ description = "GitHub theme for VS Code";
+ downloadPage =
+ "https://marketplace.visualstudio.com/items?itemName=GitHub.github-vscode-theme";
+ homepage = "https://github.com/primer/github-vscode-theme";
+ license = licenses.mit;
+ maintainers = with maintainers; [ hugolgst ];
+ };
+ };
+
+ vscode-pull-request-github = buildVscodeMarketplaceExtension {
+ mktplcRef = {
+ name = "vscode-pull-request-github";
+ publisher = "github";
+ version = "0.22.0";
+ sha256 = "13p3z86vkra26npp5a78pxdwa4z6jqjzsd38arhgdnjgwmi6bnrw";
+ };
+ meta = { license = lib.licenses.mit; };
};
};