···1{ lib
02, vscode-utils
3, useLocalExtensions ? false
4}:
···86 substituteInPlace "out/extension.js" \
87 --replace '# Start the server\n' '${patch}'
88 '';
008990 meta = {
91 description = "Use any remote machine with a SSH server as your development environment.";
···1{ lib
2+, nixosTests
3, vscode-utils
4, useLocalExtensions ? false
5}:
···87 substituteInPlace "out/extension.js" \
88 --replace '# Start the server\n' '${patch}'
89 '';
90+91+ passthru.tests = { inherit (nixosTests) vscode-remote-ssh; };
9293 meta = {
94 description = "Use any remote machine with a SSH server as your development environment.";
···1{ stdenv }:
2# srcOnly is a utility builder that only fetches and unpacks the given `src`,
3-# maybe pathings it in the process with the optional `patches` and
4-# `buildInputs` attributes.
5#
6# It can be invoked directly, or be used to wrap an existing derivation. Eg:
7#
···1{ stdenv }:
2# srcOnly is a utility builder that only fetches and unpacks the given `src`,
3+# and optionally patching with `patches` or adding build inputs.
04#
5# It can be invoked directly, or be used to wrap an existing derivation. Eg:
6#