Merge pull request #167881 from mdlayher/mdl-module

This commit is contained in:
Sandro
2022-04-08 16:55:59 +02:00
committed by GitHub
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
@@ -22459,7 +22459,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 { };
@@ -23076,7 +23078,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 { };