Merge pull request #231624 from bachp/zhf-thanos

thanos: pin to Go 1.19
This commit is contained in:
Robert Scott
2023-05-13 18:27:12 +01:00
committed by GitHub
2 changed files with 6 additions and 2 deletions
+1 -1
View File
@@ -12,7 +12,7 @@ buildGoModule rec {
vendorHash = "sha256-bNQwDttJ7YuQFrpp0alqe37/lue0CX5gB2UDRWWtTXQ=";
doCheck = false;
doCheck = true;
subPackages = "cmd/thanos";
+5 -1
View File
@@ -26088,7 +26088,11 @@ with pkgs;
tailspin = callPackage ../tools/misc/tailspin { };
thanos = callPackage ../servers/monitoring/thanos { };
thanos = callPackage ../servers/monitoring/thanos {
# Fails to run with go1.20 due to go4.org/unsafe/assume-no-moving-gc not being
# update to be compatible with Go 1.20
buildGoModule = buildGo119Module;
};
trafficserver = callPackage ../servers/http/trafficserver { };