mirror of
https://github.com/coder/coder.git
synced 2026-06-03 04:58:23 +00:00
856f0ab6f5
* chore: Improve project-wide prettier formatting and ignored files * chore: `Run make fmt/prettier` * Fix gitignore for `.vscode` folder so that ! works * Add comment in `.prettierrc.yaml` to explain `.editorconfig` * Remove scripts/apidocgen/markdown-template/README.md * Use `yq` for processing prettierrc, update lib.sh dependency check * Add `yq` to Dockerfile and Nix
58 lines
1.3 KiB
Nix
58 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
|
|
yq
|
|
zip
|
|
zstd
|
|
];
|
|
};
|
|
}
|
|
);
|
|
}
|