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}".
|
|
|
|
#
|
2017-08-12 05:27:17 +01:00
|
|
|
rec {
|
2019-03-17 19:56:57 +00:00
|
|
|
|
|
|
|
alanz.vscode-hie-server = buildVscodeMarketplaceExtension {
|
|
|
|
mktplcRef = {
|
|
|
|
name = "vscode-hie-server";
|
|
|
|
publisher = "alanz";
|
|
|
|
version = "0.0.25"; # see the note above
|
|
|
|
sha256 = "0m21w03v94qxm0i54ki5slh6rg7610zfxinfpngr0hfpgw2nnxvc";
|
|
|
|
};
|
|
|
|
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-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-03-17 19:56:30 +00:00
|
|
|
justusadam.language-haskell = buildVscodeMarketplaceExtension {
|
|
|
|
mktplcRef = {
|
|
|
|
name = "language-haskell";
|
|
|
|
publisher = "justusadam";
|
|
|
|
version = "2.5.0"; # see the note above
|
|
|
|
sha256 = "10jqj8qw5x6da9l8zhjbra3xcbrwb4cpwc3ygsy29mam5pd8g6b3";
|
|
|
|
};
|
|
|
|
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
|
|
|
|
2017-10-19 02:32:15 +01:00
|
|
|
ms-python.python = callPackage ./python {};
|
2018-06-18 14:31:15 +01:00
|
|
|
|
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
|
|
|
}
|