2018-07-21 00:44:44 +00:00
|
|
|
{ stdenv, callPackage, vscode-utils }:
|
2017-08-12 04:27:17 +00:00
|
|
|
|
|
|
|
let
|
2018-07-20 19:36:12 +00:00
|
|
|
inherit (vscode-utils) buildVscodeMarketplaceExtension;
|
2017-08-12 04:27:17 +00:00
|
|
|
in
|
2017-08-24 01:24:57 +00:00
|
|
|
#
|
2018-10-23 10:34:31 +00:00
|
|
|
# Unless there is a good reason not to, we attempt to use the same name as the
|
2017-08-24 01:24:57 +00: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 10:34:31 +00:00
|
|
|
# So an extension's attribute name should be of the form:
|
2017-08-24 01:24:57 +00:00
|
|
|
# "${mktplcRef.publisher}.${mktplcRef.name}".
|
|
|
|
#
|
2017-08-12 04:27:17 +00:00
|
|
|
rec {
|
2017-08-24 01:24:57 +00:00
|
|
|
bbenoist.Nix = buildVscodeMarketplaceExtension {
|
2017-08-12 04:27:17 +00:00
|
|
|
mktplcRef = {
|
2017-08-24 01:24:57 +00:00
|
|
|
name = "Nix";
|
2017-08-12 04:27:17 +00:00
|
|
|
publisher = "bbenoist";
|
|
|
|
version = "1.0.1";
|
|
|
|
sha256 = "0zd0n9f5z1f0ckzfjr38xw2zzmcxg1gjrava7yahg5cvdcw6l35b";
|
|
|
|
};
|
2017-08-24 01:24:57 +00:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
license = licenses.mit;
|
|
|
|
};
|
2017-08-12 04:27:17 +00:00
|
|
|
};
|
2017-08-31 02:55:53 +00:00
|
|
|
|
|
|
|
ms-vscode.cpptools = callPackage ./cpptools {};
|
2018-10-23 10:34:31 +00:00
|
|
|
|
2017-10-19 01:32:15 +00:00
|
|
|
ms-python.python = callPackage ./python {};
|
2018-06-18 13:31:15 +00:00
|
|
|
|
|
|
|
WakaTime.vscode-wakatime = callPackage ./wakatime {};
|
2018-10-23 10:34:31 +00:00
|
|
|
}
|