2020-10-12 20:05:09 +01:00
|
|
|
{ config, lib, callPackage, vscode-utils, nodePackages,llvmPackages_8 }:
|
2017-08-12 05:27:17 +01:00
|
|
|
|
|
|
|
let
|
2018-07-20 20:36:12 +01:00
|
|
|
inherit (vscode-utils) buildVscodeMarketplaceExtension;
|
2020-06-16 16:06:51 +01:00
|
|
|
|
|
|
|
#
|
|
|
|
# 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}".
|
|
|
|
#
|
2021-01-15 13:21:58 +00:00
|
|
|
baseExtensions = self: lib.mapAttrs (_n: lib.recurseIntoAttrs)
|
2020-06-16 16:06:51 +01:00
|
|
|
{
|
2020-12-08 23:51:38 +00:00
|
|
|
a5huynh.vscode-ron = buildVscodeMarketplaceExtension {
|
|
|
|
mktplcRef = {
|
|
|
|
name = "vscode-ron";
|
|
|
|
publisher = "a5huynh";
|
|
|
|
version = "0.9.0";
|
|
|
|
sha256 = "0d3p50mhqp550fmj662d3xklj14gvzvhszm2hlqvx4h28v222z97";
|
|
|
|
};
|
|
|
|
meta = {
|
2021-01-15 13:21:58 +00:00
|
|
|
license = lib.licenses.mit;
|
2020-12-08 23:51:38 +00:00
|
|
|
};
|
|
|
|
};
|
2020-06-16 16:06:51 +01:00
|
|
|
|
|
|
|
alanz.vscode-hie-server = buildVscodeMarketplaceExtension {
|
|
|
|
mktplcRef = {
|
|
|
|
name = "vscode-hie-server";
|
|
|
|
publisher = "alanz";
|
|
|
|
version = "0.0.27"; # see the note above
|
|
|
|
sha256 = "1mz0h5zd295i73hbji9ivla8hx02i4yhqcv6l4r23w3f07ql3i8h";
|
|
|
|
};
|
|
|
|
meta = {
|
2021-01-15 13:21:58 +00:00
|
|
|
license = lib.licenses.mit;
|
2020-06-16 16:06:51 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2021-01-11 13:03:02 +00:00
|
|
|
alexdima.copy-relative-path = buildVscodeMarketplaceExtension {
|
|
|
|
mktplcRef = {
|
|
|
|
name = "copy-relative-path";
|
|
|
|
publisher = "alexdima";
|
|
|
|
version = "0.0.2";
|
|
|
|
sha256 = "06g601n9d6wyyiz659w60phgm011gn9jj5fy0gf5wpi2bljk3vcn";
|
|
|
|
};
|
|
|
|
meta = {
|
|
|
|
license = lib.licenses.mit;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2020-12-01 18:13:42 +00:00
|
|
|
ms-python.vscode-pylance = buildVscodeMarketplaceExtension {
|
|
|
|
mktplcRef = {
|
|
|
|
name = "vscode-pylance";
|
|
|
|
publisher = "MS-python";
|
|
|
|
version = "2020.11.2";
|
|
|
|
sha256 = "0n2dm21vgzir3hx1m3pmx7jq4zy3hdxfsandd2wv5da4fs9b5g50";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ nodePackages.pyright ];
|
|
|
|
|
|
|
|
meta = {
|
2021-01-15 13:21:58 +00:00
|
|
|
license = lib.licenses.unfree;
|
2020-12-01 18:13:42 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2020-06-16 16:06:51 +01:00
|
|
|
bbenoist.Nix = buildVscodeMarketplaceExtension {
|
|
|
|
mktplcRef = {
|
|
|
|
name = "Nix";
|
|
|
|
publisher = "bbenoist";
|
|
|
|
version = "1.0.1";
|
|
|
|
sha256 = "0zd0n9f5z1f0ckzfjr38xw2zzmcxg1gjrava7yahg5cvdcw6l35b";
|
|
|
|
};
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-06-16 16:06:51 +01:00
|
|
|
license = licenses.mit;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2021-01-07 22:44:08 +00:00
|
|
|
brettm12345.nixfmt-vscode = buildVscodeMarketplaceExtension {
|
|
|
|
mktplcRef = {
|
|
|
|
name = "nixfmt-vscode";
|
|
|
|
publisher = "brettm12345";
|
|
|
|
version = "0.0.1";
|
|
|
|
sha256 = "07w35c69vk1l6vipnq3qfack36qcszqxn8j3v332bl0w6m02aa7k";
|
|
|
|
};
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2021-01-07 22:44:08 +00:00
|
|
|
license = licenses.mpl20;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2020-06-16 16:06:51 +01:00
|
|
|
cmschuetz12.wal = buildVscodeMarketplaceExtension {
|
|
|
|
mktplcRef = {
|
|
|
|
name = "wal";
|
|
|
|
publisher = "cmschuetz12";
|
|
|
|
version = "0.1.0";
|
|
|
|
sha256 = "0q089jnzqzhjfnv0vlb5kf747s3mgz64r7q3zscl66zb2pz5q4zd";
|
|
|
|
};
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-06-16 16:06:51 +01:00
|
|
|
license = licenses.mit;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2021-01-13 12:22:42 +00:00
|
|
|
CoenraadS.bracket-pair-colorizer = buildVscodeMarketplaceExtension {
|
|
|
|
meta = with lib; {
|
|
|
|
changelog = "https://marketplace.visualstudio.com/items/CoenraadS.bracket-pair-colorizer/changelog";
|
|
|
|
description = "A customizable extension for colorizing matching brackets";
|
|
|
|
downloadPage = "https://marketplace.visualstudio.com/items?itemName=CoenraadS.bracket-pair-colorizer";
|
|
|
|
homepage = "https://github.com/CoenraadS/BracketPair";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ superherointj ];
|
|
|
|
};
|
|
|
|
mktplcRef = {
|
|
|
|
name = "bracket-pair-colorizer";
|
|
|
|
publisher = "CoenraadS";
|
|
|
|
version = "1.0.61";
|
|
|
|
sha256 = "0r3bfp8kvhf9zpbiil7acx7zain26grk133f0r0syxqgml12i652";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2021-01-08 09:50:13 +00:00
|
|
|
coenraads.bracket-pair-colorizer-2 = buildVscodeMarketplaceExtension {
|
|
|
|
mktplcRef = {
|
|
|
|
name = "bracket-pair-colorizer-2";
|
|
|
|
publisher = "CoenraadS";
|
|
|
|
version = "0.2.0";
|
|
|
|
sha256 = "0nppgfbmw0d089rka9cqs3sbd5260dhhiipmjfga3nar9vp87slh";
|
|
|
|
};
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2021-01-08 09:50:13 +00:00
|
|
|
license = licenses.mit;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2021-01-19 11:24:38 +00:00
|
|
|
dbaeumer.vscode-eslint = buildVscodeMarketplaceExtension {
|
|
|
|
mktplcRef = {
|
|
|
|
name = "vscode-eslint";
|
|
|
|
publisher = "dbaeumer";
|
|
|
|
version = "2.1.14";
|
|
|
|
sha256 = "sha256-bVGmp871yu1Llr3uJ+CCosDsrxJtD4b1+CR+omMUfIQ=";
|
|
|
|
};
|
|
|
|
meta = {
|
|
|
|
license = lib.licenses.mit;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2021-01-23 01:16:17 +00:00
|
|
|
davidanson.vscode-markdownlint = buildVscodeMarketplaceExtension {
|
|
|
|
mktplcRef = {
|
|
|
|
name = "vscode-markdownlint";
|
|
|
|
publisher = "DavidAnson";
|
|
|
|
version = "0.38.0";
|
|
|
|
sha256 = "0d6hbsjrx1j8wrmfnvdwsa7sci1brplgxwkmy6sp74va7zxfjnqv";
|
|
|
|
};
|
|
|
|
meta = with lib; {
|
|
|
|
license = licenses.mit;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2020-06-16 16:06:51 +01:00
|
|
|
dhall.dhall-lang = buildVscodeMarketplaceExtension {
|
|
|
|
mktplcRef = {
|
|
|
|
name = "dhall-lang";
|
|
|
|
publisher = "dhall";
|
|
|
|
version = "0.0.4";
|
|
|
|
sha256 = "0sa04srhqmngmw71slnrapi2xay0arj42j4gkan8i11n7bfi1xpf";
|
|
|
|
};
|
2021-01-15 13:21:58 +00:00
|
|
|
meta = { license = lib.licenses.mit; };
|
2020-06-16 16:06:51 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
dhall.vscode-dhall-lsp-server = buildVscodeMarketplaceExtension {
|
|
|
|
mktplcRef = {
|
|
|
|
name = "vscode-dhall-lsp-server";
|
|
|
|
publisher = "dhall";
|
|
|
|
version = "0.0.4";
|
|
|
|
sha256 = "1zin7s827bpf9yvzpxpr5n6mv0b5rhh3civsqzmj52mdq365d2js";
|
|
|
|
};
|
2021-01-15 13:21:58 +00:00
|
|
|
meta = { license = lib.licenses.mit; };
|
2020-06-16 16:06:51 +01:00
|
|
|
};
|
|
|
|
|
2021-01-13 12:24:36 +00:00
|
|
|
donjayamanne.githistory = buildVscodeMarketplaceExtension {
|
|
|
|
meta = with lib; {
|
|
|
|
changelog = "https://marketplace.visualstudio.com/items/donjayamanne.githistory/changelog";
|
|
|
|
description = "View git log, file history, compare branches or commits";
|
|
|
|
downloadPage = "https://marketplace.visualstudio.com/items?itemName=donjayamanne.githistory";
|
|
|
|
homepage = "https://github.com/DonJayamanne/gitHistoryVSCode/";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ superherointj ];
|
|
|
|
};
|
|
|
|
mktplcRef = {
|
|
|
|
name = "githistory";
|
|
|
|
publisher = "donjayamanne";
|
|
|
|
version = "0.6.14";
|
|
|
|
sha256 = "11x116hzqnhgbryp2kqpki1z5mlnwxb0ly9r1513m5vgbisrsn0i";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2021-02-25 00:16:49 +00:00
|
|
|
dracula-theme.theme-dracula = buildVscodeMarketplaceExtension {
|
|
|
|
mktplcRef = {
|
|
|
|
name = "theme-dracula";
|
|
|
|
publisher = "dracula-theme";
|
|
|
|
version = "2.22.3";
|
|
|
|
sha256 = "0wni9sriin54ci8rly2s68lkfx8rj1cys6mgcizvps9sam6377w6";
|
|
|
|
};
|
|
|
|
meta = with lib; {
|
|
|
|
changelog = "https://marketplace.visualstudio.com/items/dracula-theme.theme-dracula/changelog";
|
|
|
|
description = "Dark theme for many editors, shells, and more";
|
|
|
|
downloadPage = "https://marketplace.visualstudio.com/items?itemName=dracula-theme.theme-dracula";
|
|
|
|
homepage = "https://draculatheme.com/";
|
|
|
|
license = licenses.mit;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2021-01-22 10:39:00 +00:00
|
|
|
eamodio.gitlens = buildVscodeMarketplaceExtension {
|
|
|
|
mktplcRef = {
|
|
|
|
name = "gitlens";
|
|
|
|
publisher = "eamodio";
|
|
|
|
version = "11.1.3";
|
|
|
|
sha256 = "sha256-hqJg3jP4bbXU4qSJOjeKfjkPx61yPDMsQdSUVZObK/U=";
|
|
|
|
};
|
|
|
|
meta = {
|
|
|
|
license = lib.licenses.mit;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2021-01-25 16:09:25 +00:00
|
|
|
elmtooling.elm-ls-vscode = buildVscodeMarketplaceExtension {
|
|
|
|
mktplcRef = {
|
|
|
|
name = "elm-ls-vscode";
|
|
|
|
publisher = "Elmtooling";
|
|
|
|
version = "2.0.1";
|
|
|
|
sha256 = "06x5ld2r1hzns2s052mvhmfiaawjzcn0jf5lkfprhmrkxnmfdd43";
|
|
|
|
};
|
|
|
|
meta = with lib; {
|
|
|
|
changelog = "https://marketplace.visualstudio.com/items/Elmtooling.elm-ls-vscode/changelog";
|
|
|
|
description = "Elm language server";
|
|
|
|
downloadPage = "https://marketplace.visualstudio.com/items?itemName=Elmtooling.elm-ls-vscode";
|
|
|
|
homepage = "https://github.com/elm-tooling/elm-language-client-vscode";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ mcwitt ];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2021-01-13 12:27:20 +00:00
|
|
|
esbenp.prettier-vscode = buildVscodeMarketplaceExtension {
|
|
|
|
meta = with lib; {
|
|
|
|
changelog = "https://marketplace.visualstudio.com/items/esbenp.prettier-vscode/changelog";
|
|
|
|
description = "Code formatter using prettier";
|
|
|
|
downloadPage = "https://marketplace.visualstudio.com/items?itemName=esbenp.prettier-vscode";
|
|
|
|
homepage = "https://github.com/prettier/prettier-vscode";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ superherointj ];
|
|
|
|
};
|
|
|
|
mktplcRef = {
|
|
|
|
name = "prettier-vscode";
|
|
|
|
publisher = "esbenp";
|
|
|
|
version = "5.8.0";
|
|
|
|
sha256 = "0h7wc4pffyq1i8vpj4a5az02g2x04y7y1chilmcfmzg2w42xpby7";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2021-01-13 12:29:59 +00:00
|
|
|
file-icons.file-icons = buildVscodeMarketplaceExtension {
|
|
|
|
meta = with lib; {
|
|
|
|
changelog = "https://marketplace.visualstudio.com/items/file-icons.file-icons/changelog";
|
|
|
|
description = "File-specific icons in VSCode for improved visual grepping.";
|
|
|
|
downloadPage = "https://marketplace.visualstudio.com/items?itemName=file-icons.file-icons";
|
|
|
|
homepage = "https://github.com/file-icons/vscode";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ superherointj ];
|
|
|
|
};
|
|
|
|
mktplcRef = {
|
|
|
|
name = "file-icons";
|
|
|
|
publisher = "file-icons";
|
|
|
|
version = "1.0.28";
|
|
|
|
sha256 = "1lyx0l42xhi2f3rdnjddc3mw7m913kjnchawi98i6vqsx3dv7091";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2020-06-16 16:06:51 +01:00
|
|
|
formulahendry.auto-close-tag = buildVscodeMarketplaceExtension {
|
|
|
|
mktplcRef = {
|
|
|
|
name = "auto-close-tag";
|
|
|
|
publisher = "formulahendry";
|
|
|
|
version = "0.5.6";
|
|
|
|
sha256 = "058jgmllqb0j6gg5anghdp35nkykii28igfcwqgh4bp10pyvspg0";
|
|
|
|
};
|
|
|
|
meta = {
|
2021-01-15 13:21:58 +00:00
|
|
|
license = lib.licenses.mit;
|
2020-06-16 16:06:51 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2021-01-07 23:46:06 +00:00
|
|
|
formulahendry.auto-rename-tag = buildVscodeMarketplaceExtension {
|
|
|
|
mktplcRef = {
|
|
|
|
name = "auto-rename-tag";
|
|
|
|
publisher = "formulahendry";
|
2021-01-08 08:36:43 +00:00
|
|
|
version = "0.1.6";
|
|
|
|
sha256 = "0cqg9mxkyf41brjq2c764w42lzyn6ffphw6ciw7xnqk1h1x8wwbs";
|
2021-01-07 23:46:06 +00:00
|
|
|
};
|
|
|
|
meta = {
|
2021-01-15 13:21:58 +00:00
|
|
|
license = lib.licenses.mit;
|
2021-01-07 23:46:06 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2021-02-22 21:19:54 +00:00
|
|
|
formulahendry.code-runner = buildVscodeMarketplaceExtension {
|
|
|
|
mktplcRef = {
|
|
|
|
name = "code-runner";
|
|
|
|
publisher = "formulahendry";
|
|
|
|
version = "0.11.2";
|
|
|
|
sha256 = "0qwcxr6m1xwhqmdl4pccjgpikpq1hgi2hgrva5abn8ixa2510hcy";
|
|
|
|
};
|
|
|
|
meta = {
|
|
|
|
license = lib.licenses.mit;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2021-01-13 12:31:22 +00:00
|
|
|
freebroccolo.reasonml = buildVscodeMarketplaceExtension {
|
|
|
|
meta = with lib; {
|
|
|
|
changelog = "https://marketplace.visualstudio.com/items/freebroccolo.reasonml/changelog";
|
|
|
|
description = "Reason support for Visual Studio Code";
|
|
|
|
downloadPage = "https://marketplace.visualstudio.com/items?itemName=freebroccolo.reasonml";
|
|
|
|
homepage = "https://github.com/reasonml-editor/vscode-reasonml";
|
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ superherointj ];
|
|
|
|
};
|
|
|
|
mktplcRef = {
|
|
|
|
name = "reasonml";
|
|
|
|
publisher = "freebroccolo";
|
|
|
|
version = "1.0.38";
|
|
|
|
sha256 = "1nay6qs9vcxd85ra4bv93gg3aqg3r2wmcnqmcsy9n8pg1ds1vngd";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2021-01-12 20:24:48 +00:00
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2020-06-16 16:08:18 +01:00
|
|
|
golang.Go = buildVscodeMarketplaceExtension {
|
|
|
|
mktplcRef = {
|
|
|
|
name = "Go";
|
|
|
|
publisher = "golang";
|
|
|
|
version = "0.18.1";
|
|
|
|
sha256 = "sha256-b2Wa3TULQQnBm1/xnDCB9SZjE+Wxz5wBttjDEtf8qlE=";
|
|
|
|
};
|
|
|
|
meta = {
|
2021-01-15 13:21:58 +00:00
|
|
|
license = lib.licenses.mit;
|
2020-06-16 16:08:18 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2021-01-19 11:34:24 +00:00
|
|
|
graphql.vscode-graphql = buildVscodeMarketplaceExtension {
|
|
|
|
mktplcRef = {
|
|
|
|
name = "vscode-graphql";
|
|
|
|
publisher = "GraphQL";
|
|
|
|
version = "0.3.13";
|
|
|
|
sha256 = "sha256-JjEefVHQUYidUsr8Ce/dh7hLDm21WkyS+2RwsXHoY04=";
|
|
|
|
};
|
|
|
|
meta = {
|
|
|
|
license = lib.licenses.mit;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2021-01-23 01:13:14 +00:00
|
|
|
gruntfuggly.todo-tree = buildVscodeMarketplaceExtension {
|
|
|
|
mktplcRef = {
|
|
|
|
name = "todo-tree";
|
|
|
|
publisher = "Gruntfuggly";
|
2021-03-08 18:36:00 +00:00
|
|
|
version = "0.0.201";
|
|
|
|
sha256 = "1hjck1r2byc45rp28gn15wbmcrl1wjng7kn5lyhr6mgjjwqh5pa8";
|
2021-01-23 01:13:14 +00:00
|
|
|
};
|
|
|
|
meta = with lib; {
|
|
|
|
license = licenses.mit;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2020-06-16 16:06:51 +01:00
|
|
|
haskell.haskell = buildVscodeMarketplaceExtension {
|
|
|
|
mktplcRef = {
|
|
|
|
name = "haskell";
|
|
|
|
publisher = "haskell";
|
|
|
|
version = "1.1.0";
|
|
|
|
sha256 = "1wg06lyk0qn9jd6gi007sg7v0z9z8gwq7x2449d4ihs9n3w5l0gb";
|
|
|
|
};
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-06-16 16:06:51 +01:00
|
|
|
license = licenses.mit;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2021-02-17 15:52:42 +00:00
|
|
|
hashicorp.terraform = callPackage ./terraform {};
|
|
|
|
|
2021-01-23 01:29:06 +00:00
|
|
|
hookyqr.beautify = buildVscodeMarketplaceExtension {
|
|
|
|
mktplcRef = {
|
|
|
|
name = "beautify";
|
|
|
|
publisher = "HookyQR";
|
|
|
|
version = "1.5.0";
|
|
|
|
sha256 = "1c0kfavdwgwham92xrh0gnyxkrl9qlkpv39l1yhrldn8vd10fj5i";
|
|
|
|
};
|
|
|
|
meta = with lib; {
|
|
|
|
license = licenses.mit;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2021-01-08 00:15:03 +00:00
|
|
|
ibm.output-colorizer = buildVscodeMarketplaceExtension {
|
|
|
|
mktplcRef = {
|
|
|
|
name = "output-colorizer";
|
|
|
|
publisher = "IBM";
|
|
|
|
version = "0.1.2";
|
|
|
|
sha256 = "0i9kpnlk3naycc7k8gmcxas3s06d67wxr3nnyv5hxmsnsx5sfvb7";
|
|
|
|
};
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2021-01-08 00:15:03 +00:00
|
|
|
license = licenses.mit;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2020-06-16 16:06:51 +01:00
|
|
|
james-yu.latex-workshop = buildVscodeMarketplaceExtension {
|
|
|
|
mktplcRef = {
|
|
|
|
name = "latex-workshop";
|
|
|
|
publisher = "James-Yu";
|
|
|
|
version = "8.2.0";
|
|
|
|
sha256 = "1ai16aam4v5jzhxgms589q0l24kyk1a9in6z4i7g05b3sahyxab2";
|
|
|
|
};
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-06-16 16:06:51 +01:00
|
|
|
license = licenses.mit;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2021-01-07 20:21:42 +00:00
|
|
|
jnoortheen.nix-ide = buildVscodeMarketplaceExtension {
|
2021-01-13 12:32:44 +00:00
|
|
|
meta = with lib; {
|
|
|
|
changelog = "https://marketplace.visualstudio.com/items/jnoortheen.nix-ide/changelog";
|
|
|
|
description = "Nix language support with formatting and error report";
|
|
|
|
downloadPage = "https://marketplace.visualstudio.com/items?itemName=jnoortheen.nix-ide";
|
|
|
|
homepage = "https://github.com/jnoortheen/vscode-nix-ide";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ superherointj ];
|
|
|
|
};
|
2021-01-07 20:21:42 +00:00
|
|
|
mktplcRef = {
|
|
|
|
name = "nix-ide";
|
|
|
|
publisher = "jnoortheen";
|
|
|
|
version = "0.1.7";
|
|
|
|
sha256 = "1bw4wyq9abimxbhl7q9g8grvj2ax9qqq6mmqbiqlbsi2arvk0wrm";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2021-01-23 01:18:16 +00:00
|
|
|
jock.svg = buildVscodeMarketplaceExtension {
|
|
|
|
mktplcRef = {
|
|
|
|
name = "svg";
|
|
|
|
publisher = "jock";
|
|
|
|
version = "1.4.4";
|
|
|
|
sha256 = "0kn2ic7pgbd4rbvzpsxfwyiwxa1iy92l0h3jsppxc8gk8xbqm2nc";
|
|
|
|
};
|
|
|
|
meta = with lib; {
|
|
|
|
license = licenses.mit;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2021-01-22 15:08:02 +00:00
|
|
|
jpoissonnier.vscode-styled-components = buildVscodeMarketplaceExtension {
|
|
|
|
mktplcRef = {
|
|
|
|
name = "vscode-styled-components";
|
|
|
|
publisher = "jpoissonnier";
|
|
|
|
version = "1.4.1";
|
|
|
|
sha256 = "sha256-ojbeuYBCS+DjF5R0aLuBImzoSOb8mXw1s0Uh0CzggzE=";
|
|
|
|
};
|
|
|
|
meta = {
|
|
|
|
license = lib.licenses.mit;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2020-06-16 16:06:51 +01:00
|
|
|
justusadam.language-haskell = buildVscodeMarketplaceExtension {
|
|
|
|
mktplcRef = {
|
|
|
|
name = "language-haskell";
|
|
|
|
publisher = "justusadam";
|
|
|
|
version = "3.2.1";
|
|
|
|
sha256 = "0lxp8xz17ciy93nj4lzxqvz71vw1zdyamrnh2n792yair8890rr6";
|
|
|
|
};
|
|
|
|
meta = {
|
2021-01-15 13:21:58 +00:00
|
|
|
license = lib.licenses.bsd3;
|
2020-06-16 16:06:51 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2021-01-19 11:31:47 +00:00
|
|
|
mikestead.dotenv = buildVscodeMarketplaceExtension {
|
|
|
|
mktplcRef = {
|
|
|
|
name = "dotenv";
|
|
|
|
publisher = "mikestead";
|
|
|
|
version = "1.0.1";
|
|
|
|
sha256 = "sha256-dieCzNOIcZiTGu4Mv5zYlG7jLhaEsJR05qbzzzQ7RWc=";
|
|
|
|
};
|
|
|
|
meta = {
|
|
|
|
license = lib.licenses.mit;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2020-12-08 23:42:29 +00:00
|
|
|
mskelton.one-dark-theme = buildVscodeMarketplaceExtension {
|
|
|
|
mktplcRef = {
|
|
|
|
name = "one-dark-theme";
|
|
|
|
publisher = "mskelton";
|
|
|
|
version = "1.7.2";
|
|
|
|
sha256 = "1ks6z8wsxmlfhiwa51f7d6digvw11dlxc7mja3hankgxcf5dyj31";
|
|
|
|
};
|
|
|
|
meta = {
|
2021-01-15 13:21:58 +00:00
|
|
|
license = lib.licenses.mit;
|
2020-12-08 23:42:29 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2021-01-08 13:56:38 +00:00
|
|
|
mechatroner.rainbow-csv = buildVscodeMarketplaceExtension {
|
|
|
|
mktplcRef = {
|
|
|
|
name = "rainbow-csv";
|
|
|
|
publisher = "mechatroner";
|
|
|
|
version = "1.7.1";
|
|
|
|
sha256 = "0w5mijs4ll5qjkpyw7qpn1k40pq8spm0b3q72x150ydbcini5hxw";
|
|
|
|
};
|
|
|
|
meta = {
|
2021-01-15 13:21:58 +00:00
|
|
|
license = lib.licenses.mit;
|
2021-01-08 13:56:38 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2020-06-16 16:06:51 +01:00
|
|
|
ms-azuretools.vscode-docker = buildVscodeMarketplaceExtension {
|
|
|
|
mktplcRef = {
|
|
|
|
name = "vscode-docker";
|
|
|
|
publisher = "ms-azuretools";
|
|
|
|
version = "0.8.1";
|
|
|
|
sha256 = "0n59whmcrx8946xix6skvc50f2vsc85ckvn8cs06w9mqmymm1q0s";
|
|
|
|
};
|
|
|
|
meta = {
|
2021-01-15 13:21:58 +00:00
|
|
|
license = lib.licenses.mit;
|
2020-06-16 16:06:51 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2020-10-10 22:46:58 +01:00
|
|
|
ms-dotnettools.csharp = callPackage ./ms-dotnettools-csharp { };
|
|
|
|
|
2020-06-16 16:06:51 +01:00
|
|
|
ms-kubernetes-tools.vscode-kubernetes-tools = buildVscodeMarketplaceExtension {
|
|
|
|
mktplcRef = {
|
|
|
|
name = "vscode-kubernetes-tools";
|
|
|
|
publisher = "ms-kubernetes-tools";
|
|
|
|
version = "1.0.6";
|
|
|
|
sha256 = "12a4phl1pddsajy3n0ld6rp607iy0pif6pqrs6ljbg2x97fyra28";
|
|
|
|
};
|
|
|
|
meta = {
|
2021-01-15 13:21:58 +00:00
|
|
|
license = lib.licenses.mit;
|
2020-06-16 16:06:51 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
ms-vscode.cpptools = callPackage ./cpptools {};
|
|
|
|
|
|
|
|
ms-vscode-remote.remote-ssh = callPackage ./remote-ssh {};
|
|
|
|
|
|
|
|
ms-python.python = callPackage ./python {
|
|
|
|
extractNuGet = callPackage ./python/extract-nuget.nix { };
|
|
|
|
};
|
|
|
|
|
2021-01-18 14:45:56 +00:00
|
|
|
msjsdiag.debugger-for-chrome = buildVscodeMarketplaceExtension {
|
|
|
|
mktplcRef = {
|
|
|
|
name = "debugger-for-chrome";
|
|
|
|
publisher = "msjsdiag";
|
|
|
|
version = "4.12.11";
|
|
|
|
sha256 = "sha256-9i3TgCFThnFF5ccwzS4ATj5c2Xoe/4tDFGv75jJxeQ4=";
|
|
|
|
};
|
|
|
|
meta = {
|
|
|
|
license = lib.licenses.mit;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2020-12-09 03:34:09 +00:00
|
|
|
naumovs.color-highlight = buildVscodeMarketplaceExtension {
|
|
|
|
mktplcRef = {
|
|
|
|
name = "color-highlight";
|
|
|
|
publisher = "naumovs";
|
|
|
|
version = "2.3.0";
|
|
|
|
sha256 = "1syzf43ws343z911fnhrlbzbx70gdn930q67yqkf6g0mj8lf2za2";
|
|
|
|
};
|
|
|
|
meta = {
|
2021-01-15 13:21:58 +00:00
|
|
|
license = lib.licenses.mit;
|
2020-12-09 03:34:09 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2020-06-16 16:06:51 +01:00
|
|
|
redhat.vscode-yaml = buildVscodeMarketplaceExtension {
|
|
|
|
mktplcRef = {
|
|
|
|
name = "vscode-yaml";
|
|
|
|
publisher = "redhat";
|
2020-12-09 08:07:51 +00:00
|
|
|
version = "0.13.0";
|
|
|
|
sha256 = "046kdk73a5xbrwq16ff0l64271c6q6ygjvxaph58z29gyiszfkig";
|
2020-06-16 16:06:51 +01:00
|
|
|
};
|
|
|
|
meta = {
|
2021-01-15 13:21:58 +00:00
|
|
|
license = lib.licenses.mit;
|
2020-06-16 16:06:51 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2021-01-23 00:51:28 +00:00
|
|
|
rubymaniac.vscode-paste-and-indent = buildVscodeMarketplaceExtension {
|
|
|
|
mktplcRef = {
|
|
|
|
name = "vscode-paste-and-indent";
|
|
|
|
publisher = "Rubymaniac";
|
|
|
|
version = "0.0.8";
|
|
|
|
sha256 = "0fqwcvwq37ndms6vky8jjv0zliy6fpfkh8d9raq8hkinfxq6klgl";
|
|
|
|
};
|
|
|
|
meta = with lib; {
|
|
|
|
license = licenses.mit;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2020-06-16 16:06:51 +01:00
|
|
|
matklad.rust-analyzer = callPackage ./rust-analyzer {};
|
|
|
|
|
2021-01-13 12:33:37 +00:00
|
|
|
ocamllabs.ocaml-platform = buildVscodeMarketplaceExtension {
|
|
|
|
meta = with lib; {
|
|
|
|
changelog = "https://marketplace.visualstudio.com/items/ocamllabs.ocaml-platform/changelog";
|
|
|
|
description = "Official OCaml Support from OCamlLabs";
|
|
|
|
downloadPage = "https://marketplace.visualstudio.com/items?itemName=ocamllabs.ocaml-platform";
|
|
|
|
homepage = "https://github.com/ocamllabs/vscode-ocaml-platform";
|
|
|
|
license = licenses.isc;
|
|
|
|
maintainers = with maintainers; [ superherointj ];
|
|
|
|
};
|
|
|
|
mktplcRef = {
|
|
|
|
name = "ocaml-platform";
|
|
|
|
publisher = "ocamllabs";
|
|
|
|
version = "1.5.1";
|
|
|
|
sha256 = "0jkxpcrbr8xmwfl8jphmarjz2jk54hvmc24ww89d4bgx1awayqfh";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2020-12-08 22:23:40 +00:00
|
|
|
pkief.material-icon-theme = buildVscodeMarketplaceExtension {
|
|
|
|
mktplcRef = {
|
|
|
|
name = "material-icon-theme";
|
|
|
|
publisher = "pkief";
|
|
|
|
version = "4.4.0";
|
|
|
|
sha256 = "1m9mis59j9xnf1zvh67p5rhayaa9qxjiw9iw847nyl9vsy73w8ya";
|
|
|
|
};
|
|
|
|
meta = {
|
2021-01-15 13:21:58 +00:00
|
|
|
license = lib.licenses.mit;
|
2020-12-08 22:23:40 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2021-02-23 17:06:45 +00:00
|
|
|
rubbersheep.gi = buildVscodeMarketplaceExtension {
|
|
|
|
mktplcRef = {
|
|
|
|
name = "gi";
|
|
|
|
publisher = "rubbersheep";
|
|
|
|
version = "0.2.11";
|
|
|
|
sha256 = "0j9k6wm959sziky7fh55awspzidxrrxsdbpz1d79s5lr5r19rs6j";
|
|
|
|
};
|
|
|
|
meta = {
|
|
|
|
license = lib.licenses.mit;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2021-01-09 13:32:51 +00:00
|
|
|
ryu1kn.partial-diff = buildVscodeMarketplaceExtension {
|
|
|
|
mktplcRef = {
|
|
|
|
name = "partial-diff";
|
|
|
|
publisher = "ryu1kn";
|
|
|
|
version = "1.4.1";
|
|
|
|
sha256 = "1r4kg4slgxncdppr4fn7i5vfhvzcg26ljia2r97n6wvwn8534vs9";
|
|
|
|
};
|
|
|
|
meta = {
|
2021-01-15 13:21:58 +00:00
|
|
|
license = lib.licenses.mit;
|
2020-12-08 22:23:40 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2020-06-16 16:06:51 +01:00
|
|
|
scala-lang.scala = buildVscodeMarketplaceExtension {
|
|
|
|
mktplcRef = {
|
|
|
|
name = "scala";
|
|
|
|
publisher = "scala-lang";
|
|
|
|
version = "0.4.5";
|
|
|
|
sha256 = "0nrj32a7a86vwc9gfh748xs3mmfwbc304dp7nks61f0lx8b4wzxw";
|
|
|
|
};
|
|
|
|
meta = {
|
2021-01-15 13:21:58 +00:00
|
|
|
license = lib.licenses.mit;
|
2020-06-16 16:06:51 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
scalameta.metals = buildVscodeMarketplaceExtension {
|
|
|
|
mktplcRef = {
|
|
|
|
name = "metals";
|
|
|
|
publisher = "scalameta";
|
2020-12-21 19:24:21 +00:00
|
|
|
version = "1.9.10";
|
|
|
|
sha256 = "1afmqzlw3bl9bv59l9b2jrljhbq8djb7vl8rjv58c5wi7nvm2qab";
|
2020-06-16 16:06:51 +01:00
|
|
|
};
|
|
|
|
meta = {
|
2021-01-15 13:21:58 +00:00
|
|
|
license = lib.licenses.asl20;
|
2020-06-16 16:06:51 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2020-12-08 23:25:54 +00:00
|
|
|
serayuzgur.crates = buildVscodeMarketplaceExtension {
|
|
|
|
mktplcRef = {
|
|
|
|
name = "crates";
|
|
|
|
publisher = "serayuzgur";
|
|
|
|
version = "0.5.3";
|
|
|
|
sha256 = "1xk7ayv590hsm3scqpyh6962kvgdlinnpkx0vapr7vs4y08dx72f";
|
|
|
|
};
|
|
|
|
meta = {
|
2021-01-15 13:21:58 +00:00
|
|
|
license = lib.licenses.mit;
|
2020-12-08 23:25:54 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2020-06-16 16:06:51 +01:00
|
|
|
skyapps.fish-vscode = buildVscodeMarketplaceExtension {
|
|
|
|
mktplcRef = {
|
|
|
|
name = "fish-vscode";
|
|
|
|
publisher = "skyapps";
|
|
|
|
version = "0.2.1";
|
|
|
|
sha256 = "0y1ivymn81ranmir25zk83kdjpjwcqpnc9r3jwfykjd9x0jib2hl";
|
|
|
|
};
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2021-01-23 01:24:57 +00:00
|
|
|
license = licenses.mit;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
spywhere.guides = buildVscodeMarketplaceExtension {
|
|
|
|
mktplcRef = {
|
|
|
|
name = "guides";
|
|
|
|
publisher = "spywhere";
|
|
|
|
version = "0.9.3";
|
|
|
|
sha256 = "1kvsj085w1xax6fg0kvsj1cizqh86i0pkzpwi0sbfvmcq21i6ghn";
|
|
|
|
};
|
|
|
|
meta = with lib; {
|
2020-06-16 16:06:51 +01:00
|
|
|
license = licenses.mit;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2021-01-23 01:22:57 +00:00
|
|
|
streetsidesoftware.code-spell-checker = buildVscodeMarketplaceExtension {
|
|
|
|
mktplcRef = {
|
|
|
|
name = "code-spell-checker";
|
|
|
|
publisher = "streetsidesoftware";
|
|
|
|
version = "1.10.2";
|
|
|
|
sha256 = "1ll046rf5dyc7294nbxqk5ya56g2bzqnmxyciqpz2w5x7j75rjib";
|
|
|
|
};
|
|
|
|
meta = with lib; {
|
|
|
|
license = licenses.mit;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2020-12-08 23:00:59 +00:00
|
|
|
tamasfe.even-better-toml = buildVscodeMarketplaceExtension {
|
|
|
|
mktplcRef = {
|
|
|
|
name = "even-better-toml";
|
|
|
|
publisher = "tamasfe";
|
|
|
|
version = "0.9.3";
|
|
|
|
sha256 = "16x2y58hkankazpwm93j8lqdn3mala7iayck548kki9zx4qrhhck";
|
|
|
|
};
|
|
|
|
meta = {
|
2021-01-15 13:21:58 +00:00
|
|
|
license = lib.licenses.mit;
|
2020-12-08 23:00:59 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2021-02-13 19:33:55 +00:00
|
|
|
tomoki1207.pdf = buildVscodeMarketplaceExtension {
|
|
|
|
mktplcRef = {
|
|
|
|
name = "pdf";
|
|
|
|
publisher = "tomoki1207";
|
|
|
|
version = "1.1.0";
|
|
|
|
sha256 = "0pcs4iy77v4f04f8m9w2rpdzfq7sqbspr7f2sm1fv7bm515qgsvb";
|
|
|
|
};
|
|
|
|
meta = {
|
|
|
|
license = lib.licenses.mit;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2021-01-07 23:52:21 +00:00
|
|
|
tyriar.sort-lines = buildVscodeMarketplaceExtension {
|
|
|
|
mktplcRef = {
|
|
|
|
name = "sort-lines";
|
|
|
|
publisher = "Tyriar";
|
|
|
|
version = "1.9.0";
|
|
|
|
sha256 = "0l4wibsjnlbzbrl1wcj18vnm1q4ygvxmh347jvzziv8f1l790qjl";
|
|
|
|
};
|
|
|
|
meta = {
|
2021-01-15 13:21:58 +00:00
|
|
|
license = lib.licenses.mit;
|
2021-01-07 23:52:21 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2021-02-23 22:42:47 +00:00
|
|
|
usernamehw.errorlens = buildVscodeMarketplaceExtension {
|
|
|
|
mktplcRef = {
|
|
|
|
name = "errorlens";
|
|
|
|
publisher = "usernamehw";
|
|
|
|
version = "3.2.4";
|
|
|
|
sha256 = "0caxmf6v0s5kgp6cp3j1kk7slhspjv5kzhn4sq3miyl5jkrn95kx";
|
|
|
|
};
|
|
|
|
meta = {
|
|
|
|
license = lib.licenses.mit;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2021-02-05 11:37:39 +00:00
|
|
|
vadimcn.vscode-lldb = callPackage ./vscode-lldb { };
|
2020-06-16 16:06:51 +01:00
|
|
|
|
2021-01-07 23:30:30 +00:00
|
|
|
vincaslt.highlight-matching-tag = buildVscodeMarketplaceExtension {
|
|
|
|
mktplcRef = {
|
|
|
|
name = "highlight-matching-tag";
|
|
|
|
publisher = "vincaslt";
|
|
|
|
version = "0.10.0";
|
|
|
|
sha256 = "1albwz3lc9i20if77inm1ipwws8apigvx24rbag3d1h3p4vwda49";
|
|
|
|
};
|
|
|
|
meta = {
|
2021-01-15 13:21:58 +00:00
|
|
|
license = lib.licenses.mit;
|
2021-01-07 23:30:30 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2020-06-16 16:06:51 +01:00
|
|
|
ms-vsliveshare.vsliveshare = callPackage ./ms-vsliveshare-vsliveshare {};
|
|
|
|
|
|
|
|
vscodevim.vim = buildVscodeMarketplaceExtension {
|
|
|
|
mktplcRef = {
|
|
|
|
name = "vim";
|
|
|
|
publisher = "vscodevim";
|
|
|
|
version = "1.11.3";
|
|
|
|
sha256 = "1smzsgcrkhghbnpy51gp28kh74l7y4s2m8pfxabb4ffb751254j0";
|
|
|
|
};
|
|
|
|
meta = {
|
2021-01-15 13:21:58 +00:00
|
|
|
license = lib.licenses.mit;
|
2020-06-16 16:06:51 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
xaver.clang-format = buildVscodeMarketplaceExtension {
|
|
|
|
mktplcRef = {
|
|
|
|
name = "clang-format";
|
|
|
|
publisher = "xaver";
|
|
|
|
version = "1.9.0";
|
|
|
|
sha256 = "abd0ef9176eff864f278c548c944032b8f4d8ec97d9ac6e7383d60c92e258c2f";
|
|
|
|
};
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-06-16 16:06:51 +01:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = [ maintainers.zeratax ];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
llvm-org.lldb-vscode = llvmPackages_8.lldb;
|
|
|
|
|
|
|
|
WakaTime.vscode-wakatime = callPackage ./wakatime {};
|
2021-02-13 19:33:34 +00:00
|
|
|
|
|
|
|
wholroyd.jinja = buildVscodeMarketplaceExtension {
|
|
|
|
mktplcRef = {
|
|
|
|
name = "jinja";
|
|
|
|
publisher = "wholroyd";
|
|
|
|
version = "0.0.8";
|
|
|
|
sha256 = "1ln9gly5bb7nvbziilnay4q448h9npdh7sd9xy277122h0qawkci";
|
|
|
|
};
|
|
|
|
meta = {
|
|
|
|
license = lib.licenses.mit;
|
|
|
|
};
|
|
|
|
};
|
2020-11-24 19:03:58 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
aliases = self: super: {
|
2020-06-16 16:06:51 +01:00
|
|
|
# aliases
|
2020-11-24 19:03:58 +00:00
|
|
|
ms-vscode = lib.recursiveUpdate super.ms-vscode { inherit (super.golang) Go; };
|
|
|
|
};
|
|
|
|
|
|
|
|
# TODO: add overrides overlay, so that we can have a generated.nix
|
|
|
|
# then apply extension specific modifcations to packages.
|
|
|
|
|
|
|
|
# overlays will be applied left to right, overrides should come after aliases.
|
|
|
|
overlays = lib.optionals (config.allowAliases or true) [ aliases ];
|
|
|
|
|
|
|
|
toFix = lib.foldl' (lib.flip lib.extends) baseExtensions overlays;
|
2017-08-12 05:27:17 +01:00
|
|
|
in
|
2020-11-24 19:03:58 +00:00
|
|
|
lib.fix toFix
|