mirror of
https://github.com/juanfont/headscale.git
synced 2024-11-10 09:02:30 +08:00
feat: add golangci-lint in nix develop
This commit is contained in:
parent
844ad15109
commit
852dc0f4de
1 changed files with 18 additions and 0 deletions
18
flake.nix
18
flake.nix
|
@ -36,6 +36,24 @@
|
|||
nativeBuildInputs = [ pkgs.installShellFiles ];
|
||||
};
|
||||
|
||||
golangci-lint =
|
||||
pkgs.buildGoModule rec {
|
||||
pname = "golangci-lint";
|
||||
version = "1.46.1";
|
||||
|
||||
src = pkgs.fetchFromGitHub {
|
||||
owner = "golangci";
|
||||
repo = "golangci-lint";
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-BUXEg+4r9L/gqe4DhTlhN55P3jWt7ZyWFQycO6QePrw=";
|
||||
};
|
||||
|
||||
vendorSha256 = "sha256-sEzWUeVk5GB0H41wrp12P8sBWRjg0FHUX6ABDEEBqK8=";
|
||||
|
||||
nativeBuildInputs = [ pkgs.installShellFiles ];
|
||||
};
|
||||
|
||||
|
||||
protoc-gen-grpc-gateway =
|
||||
pkgs.buildGoModule rec {
|
||||
pname = "grpc-gateway";
|
||||
|
|
Loading…
Reference in a new issue