mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-03 18:54:42 +00:00
Merge pull request #231624 from bachp/zhf-thanos
thanos: pin to Go 1.19
This commit is contained in:
commit
09315163a7
@ -12,7 +12,7 @@ buildGoModule rec {
|
||||
|
||||
vendorHash = "sha256-bNQwDttJ7YuQFrpp0alqe37/lue0CX5gB2UDRWWtTXQ=";
|
||||
|
||||
doCheck = false;
|
||||
doCheck = true;
|
||||
|
||||
subPackages = "cmd/thanos";
|
||||
|
||||
|
@ -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 { };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user