2019-04-04 09:29:01 +01:00
|
|
|
{ stdenv, callPackage, vscode-utils, llvmPackages_8 }:
|
2017-08-12 05:27:17 +01:00
|
|
|
|
|
|
|
let
|
2018-07-20 20:36:12 +01:00
|
|
|
inherit (vscode-utils) buildVscodeMarketplaceExtension;
|
2017-08-12 05:27:17 +01:00
|
|
|
in
|
2017-08-24 02:24:57 +01:00
|
|
|
#
|
2018-10-23 11:34:31 +01:00
|
|
|
# Unless there is a good reason not to, we attempt to use the same name as the
|
2017-08-24 02:24:57 +01:00
|
|
|
# extension's unique identifier (the name the extension gets when installed
|
|
|
|
# from vscode under `~/.vscode`) and found on the marketplace extension page.
|
2018-10-23 11:34:31 +01:00
|
|
|
# So an extension's attribute name should be of the form:
|
2017-08-24 02:24:57 +01:00
|
|
|
# "${mktplcRef.publisher}.${mktplcRef.name}".
|
|
|
|
#
|
2019-08-13 22:52:01 +01:00
|
|
|
{
|
2019-03-17 19:56:57 +00:00
|
|
|
|
|
|
|
alanz.vscode-hie-server = buildVscodeMarketplaceExtension {
|
|
|
|
mktplcRef = {
|
|
|
|
name = "vscode-hie-server";
|
|
|
|
publisher = "alanz";
|
2019-05-27 02:07:03 +01:00
|
|
|
version = "0.0.27"; # see the note above
|
|
|
|
sha256 = "1mz0h5zd295i73hbji9ivla8hx02i4yhqcv6l4r23w3f07ql3i8h";
|
2019-03-17 19:56:57 +00:00
|
|
|
};
|
|
|
|
meta = {
|
|
|
|
license = stdenv.lib.licenses.mit;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2017-08-24 02:24:57 +01:00
|
|
|
bbenoist.Nix = buildVscodeMarketplaceExtension {
|
2017-08-12 05:27:17 +01:00
|
|
|
mktplcRef = {
|
2017-08-24 02:24:57 +01:00
|
|
|
name = "Nix";
|
2017-08-12 05:27:17 +01:00
|
|
|
publisher = "bbenoist";
|
|
|
|
version = "1.0.1";
|
|
|
|
sha256 = "0zd0n9f5z1f0ckzfjr38xw2zzmcxg1gjrava7yahg5cvdcw6l35b";
|
|
|
|
};
|
2017-08-24 02:24:57 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
license = licenses.mit;
|
|
|
|
};
|
2017-08-12 05:27:17 +01:00
|
|
|
};
|
2017-08-31 03:55:53 +01:00
|
|
|
|
2019-09-30 16:28:59 +01:00
|
|
|
cmschuetz12.wal = buildVscodeMarketplaceExtension {
|
|
|
|
mktplcRef = {
|
|
|
|
name = "wal";
|
|
|
|
publisher = "cmschuetz12";
|
|
|
|
version = "0.1.0";
|
|
|
|
sha256 = "0q089jnzqzhjfnv0vlb5kf747s3mgz64r7q3zscl66zb2pz5q4zd";
|
|
|
|
};
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
license = licenses.mit;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2019-05-23 22:11:59 +01:00
|
|
|
formulahendry.auto-close-tag = buildVscodeMarketplaceExtension {
|
|
|
|
mktplcRef = {
|
|
|
|
name = "auto-close-tag";
|
|
|
|
publisher = "formulahendry";
|
|
|
|
version = "0.5.6";
|
|
|
|
sha256 = "058jgmllqb0j6gg5anghdp35nkykii28igfcwqgh4bp10pyvspg0";
|
|
|
|
};
|
|
|
|
meta = {
|
|
|
|
license = stdenv.lib.licenses.mit;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2019-09-30 16:33:05 +01:00
|
|
|
james-yu.latex-workshop = buildVscodeMarketplaceExtension {
|
|
|
|
mktplcRef = {
|
|
|
|
name = "latex-workshop";
|
|
|
|
publisher = "James-Yu";
|
|
|
|
version = "8.2.0";
|
|
|
|
sha256 = "1ai16aam4v5jzhxgms589q0l24kyk1a9in6z4i7g05b3sahyxab2";
|
|
|
|
};
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
license = licenses.mit;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2019-03-17 19:56:30 +00:00
|
|
|
justusadam.language-haskell = buildVscodeMarketplaceExtension {
|
|
|
|
mktplcRef = {
|
|
|
|
name = "language-haskell";
|
|
|
|
publisher = "justusadam";
|
2019-05-27 02:07:25 +01:00
|
|
|
version = "2.6.0"; # see the note above
|
|
|
|
sha256 = "1891pg4x5qkh151pylvn93c4plqw6vgasa4g40jbma5xzq8pygr4";
|
2019-03-17 19:56:30 +00:00
|
|
|
};
|
|
|
|
meta = {
|
|
|
|
license = stdenv.lib.licenses.bsd3;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2017-08-31 03:55:53 +01:00
|
|
|
ms-vscode.cpptools = callPackage ./cpptools {};
|
2018-10-23 11:34:31 +01:00
|
|
|
|
2019-02-04 01:02:18 +00:00
|
|
|
ms-python.python = callPackage ./python {
|
|
|
|
extractNuGet = callPackage ./python/extract-nuget.nix { };
|
|
|
|
};
|
2018-06-18 14:31:15 +01:00
|
|
|
|
2019-09-30 16:25:30 +01:00
|
|
|
skyapps.fish-vscode = buildVscodeMarketplaceExtension {
|
|
|
|
mktplcRef = {
|
|
|
|
name = "fish-vscode";
|
|
|
|
publisher = "skyapps";
|
|
|
|
version = "0.2.1";
|
|
|
|
sha256 = "0y1ivymn81ranmir25zk83kdjpjwcqpnc9r3jwfykjd9x0jib2hl";
|
|
|
|
};
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
license = licenses.mit;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2019-03-28 21:05:36 +00:00
|
|
|
vscodevim.vim = buildVscodeMarketplaceExtension {
|
|
|
|
mktplcRef = {
|
|
|
|
name = "vim";
|
|
|
|
publisher = "vscodevim";
|
2019-04-05 18:22:35 +01:00
|
|
|
version = "1.3.0";
|
|
|
|
sha256 = "18z24w7smjjnv945f8qyy6dl95xckyqa6gg3gijfcigvq5sgyawc";
|
2019-03-28 21:05:36 +00:00
|
|
|
};
|
|
|
|
meta = {
|
|
|
|
license = stdenv.lib.licenses.mit;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2019-04-04 09:29:01 +01:00
|
|
|
llvm-org.lldb-vscode = llvmPackages_8.lldb;
|
|
|
|
|
2018-06-18 14:31:15 +01:00
|
|
|
WakaTime.vscode-wakatime = callPackage ./wakatime {};
|
2018-10-23 11:34:31 +01:00
|
|
|
}
|