Merge pull request #142454 from SuperSandro2000/gopls

conduit-nginx
Sandro 2021-10-21 11:37:31 +02:00 committed by GitHub
commit 7c97a26073
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -1,13 +1,13 @@
{ lib, buildGoModule, fetchgit }:
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "gopls";
version = "0.7.3";
src = fetchgit {
url = "https://go.googlesource.com/tools";
src = fetchFromGitHub {
owner = "golang";
repo = "tools";
rev = "gopls/v${version}";
name = "gopls-source-${version}";
sha256 = "sha256-aaRaStQ35a/SK4YIR5rjvp8gPxvoNuhLh2AGbr0c6p4=";
};