From 9f082125fa8e6674d2b08e47dbf48949cedef53c Mon Sep 17 00:00:00 2001 From: Adrien Raffin-Caboisse Date: Mon, 16 May 2022 16:48:04 +0200 Subject: [PATCH] fix: remove version pinning for golangci-lint it does not work --- flake.nix | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/flake.nix b/flake.nix index d3556232..b0856bea 100644 --- a/flake.nix +++ b/flake.nix @@ -36,24 +36,6 @@ 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-hLeBZEZWQ0kyK1yLMQMaLtHIOjc5ZRmhEM7cvXXgcUM="; - }; - - vendorSha256 = "sha256-G52z3zmVKQz9iQrAAx2TTaxNjPBJiYT4ZJuWp9FVfTM="; - - nativeBuildInputs = [ pkgs.installShellFiles ]; - }; - - protoc-gen-grpc-gateway = pkgs.buildGoModule rec { pname = "grpc-gateway";