summary refs log tree commit diff
diff options
context:
space:
mode:
authorRomanos Skiadas <rom.skiad@gmail.com>2022-05-28 14:00:47 +0300
committerRomanos Skiadas <rom.skiad@gmail.com>2022-05-28 14:00:47 +0300
commit584b8b9ccf5f31c36081b5e02f4d17c9f1987fca (patch)
treead4a04ce68f999f9e6d5e73617c8a0167f8669d2
parent0e6478f4208e18c8af819d305db3bf1403d3c148 (diff)
downloadnixpkgs-584b8b9ccf5f31c36081b5e02f4d17c9f1987fca.tar
nixpkgs-584b8b9ccf5f31c36081b5e02f4d17c9f1987fca.tar.gz
nixpkgs-584b8b9ccf5f31c36081b5e02f4d17c9f1987fca.tar.bz2
nixpkgs-584b8b9ccf5f31c36081b5e02f4d17c9f1987fca.tar.lz
nixpkgs-584b8b9ccf5f31c36081b5e02f4d17c9f1987fca.tar.xz
nixpkgs-584b8b9ccf5f31c36081b5e02f4d17c9f1987fca.tar.zst
nixpkgs-584b8b9ccf5f31c36081b5e02f4d17c9f1987fca.zip
gopls: 0.8.3 -> 0.8.4
Also add myself to maintainers
-rw-r--r--pkgs/development/tools/gopls/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/tools/gopls/default.nix b/pkgs/development/tools/gopls/default.nix
index bc94c6a6ae6..26cf11299eb 100644
--- a/pkgs/development/tools/gopls/default.nix
+++ b/pkgs/development/tools/gopls/default.nix
@@ -2,17 +2,17 @@
 
 buildGoModule rec {
   pname = "gopls";
-  version = "0.8.3";
+  version = "0.8.4";
 
   src = fetchFromGitHub {
     owner = "golang";
     repo = "tools";
     rev = "gopls/v${version}";
-    sha256 = "sha256-X5U06TEkf1vfCyV95wkg2qVd7I+8S8UPBgwacG0q85U=";
+    sha256 = "sha256-3JI6jrWCOgfFefivSDWz3yets4CXnDsvE/iYYms+piU=";
   };
 
   modRoot = "gopls";
-  vendorSha256 = "sha256-p6biMwicaG5peIu6dp+Pzun8TeNWmgW2QpLIZWqnalg=";
+  vendorSha256 = "sha256-7SkCRu4CGvb0TaL9BR2eeNjGNwViFh6TgtUUxiRjDxA=";
 
   doCheck = false;
 
@@ -23,6 +23,6 @@ buildGoModule rec {
     description = "Official language server for the Go language";
     homepage = "https://github.com/golang/tools/tree/master/gopls";
     license = licenses.bsd3;
-    maintainers = with maintainers; [ mic92 SuperSandro2000 zimbatm ];
+    maintainers = with maintainers; [ mic92 rski SuperSandro2000 zimbatm ];
   };
 }