Skip to content

Commit 5ed245d

Browse files
authored
treewide: fix build by pinning Go 1.22 for now (#353895)
2 parents e23775a + a4e4e65 commit 5ed245d

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

pkgs/applications/networking/peroxide/default.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{ lib
2-
, buildGoModule
2+
, buildGo122Module
33
, fetchFromGitHub
44
, nixosTests
55
}:
66

7-
buildGoModule rec {
7+
buildGo122Module rec {
88
pname = "peroxide";
99
version = "0.5.0";
1010

pkgs/by-name/de/devdash/package.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
22
lib
3-
, buildGoModule
3+
, buildGo122Module
44
, fetchFromGitHub
55
, nix-update-script
66
, coreutils
77
}:
88

9-
buildGoModule rec {
9+
buildGo122Module rec {
1010
pname = "devdash";
1111
version = "0.5.0";
1212

pkgs/servers/monitoring/prometheus/dnsmasq-exporter.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
{ lib, buildGoModule, fetchFromGitHub, nixosTests }:
1+
{ lib, buildGo122Module, fetchFromGitHub, nixosTests }:
22

3-
buildGoModule rec {
3+
buildGo122Module rec {
44
pname = "dnsmasq_exporter";
55
version = "0.3.0";
66

pkgs/tools/networking/ali/default.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{ lib
2-
, buildGoModule
2+
, buildGo122Module
33
, fetchFromGitHub
44
}:
55

6-
buildGoModule rec {
6+
buildGo122Module rec {
77
pname = "ali";
88
version = "0.7.5";
99

pkgs/tools/security/bettercap/default.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{ lib, stdenv
2-
, buildGoModule
2+
, buildGo122Module
33
, fetchFromGitHub
44
, pkg-config
55
, libpcap
@@ -8,7 +8,7 @@
88
, libusb1
99
}:
1010

11-
buildGoModule rec {
11+
buildGo122Module rec {
1212
pname = "bettercap";
1313
version = "2.32.0";
1414

pkgs/tools/security/honeytrap/default.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{ lib
2-
, buildGoModule
2+
, buildGo122Module
33
, fetchFromGitHub
44
}:
5-
buildGoModule {
5+
buildGo122Module {
66
pname = "honeytrap";
77
version = "unstable-2021-12-20";
88

0 commit comments

Comments
 (0)