···1-{ lib
2-, nixosTests
3-, vscode-utils
4-, useLocalExtensions ? false
05}:
6# Note that useLocalExtensions requires that vscode-server is not running
7# on host. If it is, you'll need to remove $HOME/.vscode-server,
···92 --replace '# Start the server\n' '${patch}'
93 '';
9495- passthru.tests = { inherit (nixosTests) vscode-remote-ssh; };
009697 meta = {
98 description = "Use any remote machine with a SSH server as your development environment.";
···1+{
2+ lib,
3+ nixosTests,
4+ vscode-utils,
5+ useLocalExtensions ? false,
6}:
7# Note that useLocalExtensions requires that vscode-server is not running
8# on host. If it is, you'll need to remove $HOME/.vscode-server,
···93 --replace '# Start the server\n' '${patch}'
94 '';
9596+ passthru.tests = {
97+ inherit (nixosTests) vscode-remote-ssh;
98+ };
99100 meta = {
101 description = "Use any remote machine with a SSH server as your development environment.";
···1-{ lib, vscode-utils
2-, fetchurl, writeScript, runtimeShell
3-, jq, clang-tools
4-, gdbUseFixed ? true, gdb # The gdb default setting will be fixed to specified. Use version from `PATH` otherwise.
5-, autoPatchelfHook, makeWrapper, stdenv, lttng-ust, libkrb5, zlib
000000000006}:
78/*
···94 description = "The C/C++ extension adds language support for C/C++ to Visual Studio Code, including features such as IntelliSense and debugging.";
95 homepage = "https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools";
96 license = lib.licenses.unfree;
97- maintainers = [ lib.maintainers.jraygauthier lib.maintainers.stargate01 ];
98- platforms = [ "x86_64-linux" "aarch64-linux" ];
00000099 };
100}
···1+{
2+ lib,
3+ vscode-utils,
4+ fetchurl,
5+ writeScript,
6+ runtimeShell,
7+ jq,
8+ clang-tools,
9+ gdbUseFixed ? true,
10+ gdb, # The gdb default setting will be fixed to specified. Use version from `PATH` otherwise.
11+ autoPatchelfHook,
12+ makeWrapper,
13+ stdenv,
14+ lttng-ust,
15+ libkrb5,
16+ zlib,
17}:
1819/*
···105 description = "The C/C++ extension adds language support for C/C++ to Visual Studio Code, including features such as IntelliSense and debugging.";
106 homepage = "https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools";
107 license = lib.licenses.unfree;
108+ maintainers = [
109+ lib.maintainers.jraygauthier
110+ lib.maintainers.stargate01
111+ ];
112+ platforms = [
113+ "x86_64-linux"
114+ "aarch64-linux"
115+ ];
116 };
117}