121 lines
3.2 KiB
Nix
121 lines
3.2 KiB
Nix
{ stdenv, callPackage, vscode-utils, llvmPackages_8 }:
|
|
|
|
let
|
|
inherit (vscode-utils) buildVscodeMarketplaceExtension;
|
|
in
|
|
#
|
|
# Unless there is a good reason not to, we attempt to use the same name as the
|
|
# extension's unique identifier (the name the extension gets when installed
|
|
# from vscode under `~/.vscode`) and found on the marketplace extension page.
|
|
# So an extension's attribute name should be of the form:
|
|
# "${mktplcRef.publisher}.${mktplcRef.name}".
|
|
#
|
|
{
|
|
|
|
alanz.vscode-hie-server = buildVscodeMarketplaceExtension {
|
|
mktplcRef = {
|
|
name = "vscode-hie-server";
|
|
publisher = "alanz";
|
|
version = "0.0.27"; # see the note above
|
|
sha256 = "1mz0h5zd295i73hbji9ivla8hx02i4yhqcv6l4r23w3f07ql3i8h";
|
|
};
|
|
meta = {
|
|
license = stdenv.lib.licenses.mit;
|
|
};
|
|
};
|
|
|
|
bbenoist.Nix = buildVscodeMarketplaceExtension {
|
|
mktplcRef = {
|
|
name = "Nix";
|
|
publisher = "bbenoist";
|
|
version = "1.0.1";
|
|
sha256 = "0zd0n9f5z1f0ckzfjr38xw2zzmcxg1gjrava7yahg5cvdcw6l35b";
|
|
};
|
|
meta = with stdenv.lib; {
|
|
license = licenses.mit;
|
|
};
|
|
};
|
|
|
|
cmschuetz12.wal = buildVscodeMarketplaceExtension {
|
|
mktplcRef = {
|
|
name = "wal";
|
|
publisher = "cmschuetz12";
|
|
version = "0.1.0";
|
|
sha256 = "0q089jnzqzhjfnv0vlb5kf747s3mgz64r7q3zscl66zb2pz5q4zd";
|
|
};
|
|
meta = with stdenv.lib; {
|
|
license = licenses.mit;
|
|
};
|
|
};
|
|
|
|
formulahendry.auto-close-tag = buildVscodeMarketplaceExtension {
|
|
mktplcRef = {
|
|
name = "auto-close-tag";
|
|
publisher = "formulahendry";
|
|
version = "0.5.6";
|
|
sha256 = "058jgmllqb0j6gg5anghdp35nkykii28igfcwqgh4bp10pyvspg0";
|
|
};
|
|
meta = {
|
|
license = stdenv.lib.licenses.mit;
|
|
};
|
|
};
|
|
|
|
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;
|
|
};
|
|
};
|
|
|
|
justusadam.language-haskell = buildVscodeMarketplaceExtension {
|
|
mktplcRef = {
|
|
name = "language-haskell";
|
|
publisher = "justusadam";
|
|
version = "2.6.0"; # see the note above
|
|
sha256 = "1891pg4x5qkh151pylvn93c4plqw6vgasa4g40jbma5xzq8pygr4";
|
|
};
|
|
meta = {
|
|
license = stdenv.lib.licenses.bsd3;
|
|
};
|
|
};
|
|
|
|
ms-vscode.cpptools = callPackage ./cpptools {};
|
|
|
|
ms-python.python = callPackage ./python {
|
|
extractNuGet = callPackage ./python/extract-nuget.nix { };
|
|
};
|
|
|
|
skyapps.fish-vscode = buildVscodeMarketplaceExtension {
|
|
mktplcRef = {
|
|
name = "fish-vscode";
|
|
publisher = "skyapps";
|
|
version = "0.2.1";
|
|
sha256 = "0y1ivymn81ranmir25zk83kdjpjwcqpnc9r3jwfykjd9x0jib2hl";
|
|
};
|
|
meta = with stdenv.lib; {
|
|
license = licenses.mit;
|
|
};
|
|
};
|
|
|
|
vscodevim.vim = buildVscodeMarketplaceExtension {
|
|
mktplcRef = {
|
|
name = "vim";
|
|
publisher = "vscodevim";
|
|
version = "1.3.0";
|
|
sha256 = "18z24w7smjjnv945f8qyy6dl95xckyqa6gg3gijfcigvq5sgyawc";
|
|
};
|
|
meta = {
|
|
license = stdenv.lib.licenses.mit;
|
|
};
|
|
};
|
|
|
|
llvm-org.lldb-vscode = llvmPackages_8.lldb;
|
|
|
|
WakaTime.vscode-wakatime = callPackage ./wakatime {};
|
|
}
|