about summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2020-03-04 08:40:39 -0500
committerGitHub <noreply@github.com>2020-03-04 08:40:39 -0500
commitd7f450e5a7cd459175a77c6bd318ee8ec9481897 (patch)
tree65b08d549281384c13a5e42f6107dc284c5a192b /pkgs/development
parenteb5f3cac4f7823011e637d4b36fdcf0212305ecf (diff)
parent26d7b7ca8a132c2a18428989de248bf012ab84e7 (diff)
Merge pull request #81687 from r-ryantm/auto-update/golangci-lint
golangci-lint: 1.23.6 -> 1.23.7
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/tools/golangci-lint/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/tools/golangci-lint/default.nix b/pkgs/development/tools/golangci-lint/default.nix
index 75bb50f25a49a..89d21b5cb5ae2 100644
--- a/pkgs/development/tools/golangci-lint/default.nix
+++ b/pkgs/development/tools/golangci-lint/default.nix
@@ -2,13 +2,13 @@
 
 buildGoModule rec {
   pname = "golangci-lint";
-  version = "1.23.6";
+  version = "1.23.7";
 
   src = fetchFromGitHub {
     owner = "golangci";
     repo = "golangci-lint";
     rev = "v${version}";
-    sha256 = "0y5kjlqbz9xxlxd8kagrsyz9wvjqf7i28i6zb2m8x9c9zg82kvsn";
+    sha256 = "1dcayxblim97hlgdx0wdlbj2jxvdqfk8912hz7ylb1007x7y5da5";
   };
 
   modSha256 = "0sckz298bvkf4p4fdmsmza0zrj2s2pvc86qwg6i76vdh9yzvq5gx";
@@ -16,7 +16,7 @@ buildGoModule rec {
 
   meta = with lib; {
     description = "Linters Runner for Go. 5x faster than gometalinter. Nice colored output.";
-    homepage = https://golangci.com/;
+    homepage = "https://golangci.com/";
     license = licenses.agpl3;
     platforms = platforms.unix;
     maintainers = with maintainers; [ anpryl manveru ];