mirror of
https://github.com/coder/coder.git
synced 2026-06-05 22:18:20 +00:00
e61234f260
* Add extio * feat: Add `vscodeipc` subcommand for VS Code Extension This enables the VS Code extension to communicate with a Coder client. The extension will download the slim binary from `/bin/*` for the respective client architecture and OS, then execute `coder vscodeipc` for the connecting workspace. * Add authentication header, improve comments, and add tests for the CLI * Update cli/vscodeipc_test.go Co-authored-by: Mathias Fredriksson <mafredri@gmail.com> * Update cli/vscodeipc_test.go Co-authored-by: Mathias Fredriksson <mafredri@gmail.com> * Update cli/vscodeipc/vscodeipc_test.go Co-authored-by: Mathias Fredriksson <mafredri@gmail.com> * Fix requested changes * Fix IPC tests * Fix shell execution * Fix nix flake * Silence usage Co-authored-by: Mathias Fredriksson <mafredri@gmail.com>
57 lines
1.3 KiB
Nix
57 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_19
|
|
golangci-lint
|
|
gopls
|
|
gotestsum
|
|
jq
|
|
nfpm
|
|
nodePackages.typescript
|
|
nodePackages.typescript-language-server
|
|
nodejs
|
|
openssh
|
|
openssl
|
|
pango
|
|
pixman
|
|
postgresql
|
|
pkg-config
|
|
protoc-gen-go
|
|
ripgrep
|
|
shellcheck
|
|
shfmt
|
|
sqlc
|
|
terraform
|
|
typos
|
|
yarn
|
|
zip
|
|
zstd
|
|
];
|
|
};
|
|
}
|
|
);
|
|
}
|