Skip to content
This repository has been archived by the owner on Apr 12, 2021. It is now read-only.

Commit

Permalink
Merge pull request #72208 from jonringer/vscode-extensions
Browse files Browse the repository at this point in the history
Vscode extensions
  • Loading branch information
domenkozar committed Nov 8, 2019
2 parents dd439bc + 5ae6ec2 commit c62815d
Showing 1 changed file with 52 additions and 3 deletions.
55 changes: 52 additions & 3 deletions pkgs/misc/vscode-extensions/default.nix
Expand Up @@ -64,7 +64,7 @@ in
mktplcRef = {
name = "latex-workshop";
publisher = "James-Yu";
version = "8.2.0";
version = "8.2.0";
sha256 = "1ai16aam4v5jzhxgms589q0l24kyk1a9in6z4i7g05b3sahyxab2";
};
meta = with stdenv.lib; {
Expand All @@ -84,12 +84,61 @@ in
};
};

ms-azuretools.vscode-docker = buildVscodeMarketplaceExtension {
mktplcRef = {
name = "vscode-docker";
publisher = "ms-azuretools";
version = "0.8.1";
sha256 = "0n59whmcrx8946xix6skvc50f2vsc85ckvn8cs06w9mqmymm1q0s";
};
meta = {
license = stdenv.lib.licenses.mit;
};
};

ms-kubernetes-tools.vscode-kubernetes-tools = buildVscodeMarketplaceExtension {
mktplcRef = {
name = "vscode-kubernetes-tools";
publisher = "ms-kubernetes-tools";
version = "1.0.6";
sha256 = "12a4phl1pddsajy3n0ld6rp607iy0pif6pqrs6ljbg2x97fyra28";
};
meta = {
license = stdenv.lib.licenses.mit;
};
};

ms-vscode.Go = buildVscodeMarketplaceExtension {
mktplcRef = {
name = "Go";
publisher = "ms-vscode";
version = "0.11.7";
sha256 = "1l6jjdfivw1pn9y4d4i7zf80ls1k1b0ap1d828ah57ad3bgmyqfi";
};
meta = {
license = stdenv.lib.licenses.mit;
};
};

ms-vscode.cpptools = callPackage ./cpptools {};

ms-python.python = callPackage ./python {
extractNuGet = callPackage ./python/extract-nuget.nix { };
};

redhat.vscode-yaml = buildVscodeMarketplaceExtension {
mktplcRef = {
name = "vscode-yaml";
publisher = "redhat";
version = "0.5.3";
sha256 = "03swlsp906rqlrx6jf3ibh7pk36sm0zdr8jfy6sr3w5lqjg27gka";
};
meta = {
license = stdenv.lib.licenses.mit;
};
};


skyapps.fish-vscode = buildVscodeMarketplaceExtension {
mktplcRef = {
name = "fish-vscode";
Expand All @@ -106,8 +155,8 @@ in
mktplcRef = {
name = "vim";
publisher = "vscodevim";
version = "1.3.0";
sha256 = "18z24w7smjjnv945f8qyy6dl95xckyqa6gg3gijfcigvq5sgyawc";
version = "1.11.3";
sha256 = "1smzsgcrkhghbnpy51gp28kh74l7y4s2m8pfxabb4ffb751254j0";
};
meta = {
license = stdenv.lib.licenses.mit;
Expand Down

0 comments on commit c62815d

Please sign in to comment.