From 54ece522d1a17b07c2a15db8b869056ff9e87d5b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oliv=C3=A9r=20Falvai?= Date: Tue, 5 Nov 2024 20:35:43 +0100 Subject: [PATCH] dnsmasq_exporter: build with Go 1.22 for now until the golang.org/x/net dependency gets upgraded in the project https://hydra.nixos.org/build/276128656/nixlog/1/tail --- pkgs/servers/monitoring/prometheus/dnsmasq-exporter.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/monitoring/prometheus/dnsmasq-exporter.nix b/pkgs/servers/monitoring/prometheus/dnsmasq-exporter.nix index 0c071a092cfa..e78efeb22d85 100644 --- a/pkgs/servers/monitoring/prometheus/dnsmasq-exporter.nix +++ b/pkgs/servers/monitoring/prometheus/dnsmasq-exporter.nix @@ -1,6 +1,6 @@ -{ lib, buildGoModule, fetchFromGitHub, nixosTests }: +{ lib, buildGo122Module, fetchFromGitHub, nixosTests }: -buildGoModule rec { +buildGo122Module rec { pname = "dnsmasq_exporter"; version = "0.3.0";