corerad, gopls: set buildGo118Module in top-level

Signed-off-by: Matt Layher <mdlayher@gmail.com>
This commit is contained in:
Matt Layher
2022-04-08 10:14:49 -04:00
parent f35d4e3c73
commit 6f43a406c9
3 changed files with 10 additions and 6 deletions
+2 -2
View File
@@ -1,6 +1,6 @@
{ lib, buildGo118Module, fetchFromGitHub }:
{ lib, buildGoModule, fetchFromGitHub }:
buildGo118Module rec {
buildGoModule rec {
pname = "gopls";
version = "0.8.1";
+2 -2
View File
@@ -1,6 +1,6 @@
{ lib, buildGo118Module, fetchFromGitHub, nixosTests }:
{ lib, buildGoModule, fetchFromGitHub, nixosTests }:
buildGo118Module rec {
buildGoModule rec {
pname = "corerad";
version = "1.1.2";
+6 -2
View File
@@ -22457,7 +22457,9 @@ with pkgs;
coredns = callPackage ../servers/dns/coredns { };
corerad = callPackage ../tools/networking/corerad { };
corerad = callPackage ../tools/networking/corerad {
buildGoModule = buildGo118Module;
};
cpufrequtils = callPackage ../os-specific/linux/cpufrequtils { };
@@ -23074,7 +23076,9 @@ with pkgs;
go-langserver = callPackage ../development/tools/go-langserver { };
gopls = callPackage ../development/tools/gopls { };
gopls = callPackage ../development/tools/gopls {
buildGoModule = buildGo118Module;
};
gops = callPackage ../development/tools/gops { };