mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-12 04:35:41 +03:00
prometheus-dnsmasq-exporter: unpin Go builder, mark broken on darwin
Signed-off-by: Paul Meyer <katexochen0@gmail.com>
This commit is contained in:
parent
f9b5b73f03
commit
092e15e8d6
1 changed files with 6 additions and 2 deletions
|
@ -1,11 +1,12 @@
|
||||||
{
|
{
|
||||||
lib,
|
lib,
|
||||||
buildGo122Module,
|
buildGoModule,
|
||||||
fetchFromGitHub,
|
fetchFromGitHub,
|
||||||
nixosTests,
|
nixosTests,
|
||||||
|
stdenv,
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildGo122Module rec {
|
buildGoModule rec {
|
||||||
pname = "dnsmasq_exporter";
|
pname = "dnsmasq_exporter";
|
||||||
version = "0.3.0";
|
version = "0.3.0";
|
||||||
|
|
||||||
|
@ -31,5 +32,8 @@ buildGo122Module rec {
|
||||||
willibutz
|
willibutz
|
||||||
globin
|
globin
|
||||||
];
|
];
|
||||||
|
# Broken on darwin for Go toolchain > 1.22, with error:
|
||||||
|
# 'link: golang.org/x/net/internal/socket: invalid reference to syscall.recvmsg'
|
||||||
|
broken = stdenv.hostPlatform.isDarwin;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue