Files
coder/flake.nix
T
Asher b993cab49a fix: use screen for reconnecting terminal sessions on Linux if available (#8640)
* Add screen backend for reconnecting ptys

The screen portion is a port from wsep.  There is an interface that lets
you choose between screen and the previous method.  By default it will
choose screen if it is installed but this can be overidden (mostly for
tests).

The tests use a scanner instead of a reader now because the reader will
loop infinitely at the end of a stream.

Replace /bin/bash with bash since bash is not always in /bin.

* Remove connection_id from reconnecting PTY logger

This serves multiple connections so it makes no sense to scope it to a
single connection.

Also lets us use "connection_id" when logging write errors instead of
"other_conn_id".

* Use PATH to test buffered reconnecting pty
2023-08-14 11:19:13 -08:00

61 lines
1.3 KiB
Nix

{
description = "Development environments on your infrastructure";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
drpc.url = "github:storj/drpc/v0.0.32";
};
outputs = { self, nixpkgs, flake-utils, drpc }:
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = nixpkgs.legacyPackages.${system};
in
{
formatter = pkgs.nixpkgs-fmt;
devShells.default = pkgs.mkShell {
buildInputs = with pkgs; [
bash
bat
cairo
drpc.defaultPackage.${system}
exa
getopt
git
go-migrate
go_1_20
golangci-lint
gopls
gotestsum
jq
kubernetes-helm
mockgen
nfpm
nodePackages.pnpm
nodePackages.typescript
nodePackages.typescript-language-server
nodejs
openssh
openssl
pango
pixman
pkg-config
postgresql
protoc-gen-go
ripgrep
screen
shellcheck
shfmt
sqlc
terraform
typos
yq
zip
zstd
];
};
}
);
}