prometheus-bird-exporter: 1.4.3 -> 1.4.5 (#516082)

This commit is contained in:
Luke Granger-Brown
2026-05-26 09:49:51 +00:00
committed by GitHub
@@ -5,26 +5,29 @@
nixosTests,
}:
buildGoModule rec {
buildGoModule (finalAttrs: {
pname = "bird-exporter";
version = "1.4.3";
version = "1.4.5";
__structuredAttrs = true;
src = fetchFromGitHub {
owner = "czerwonk";
repo = "bird_exporter";
rev = version;
sha256 = "sha256-aClwJ+J83iuZbfNP+Y1vKEjBULD5wh/R3TMceCccacc=";
tag = "v${finalAttrs.version}";
hash = "sha256-uR3/2ktVxzEZOy57eFopLFsAuiw03e9WZn2QC4/GNVc=";
};
vendorHash = "sha256-0EXRpehdpOYpq6H9udmNnQ24EucvAcPUKOlFSAAewbE=";
vendorHash = "sha256-seTykqpdYQiWp8CoTAJ62rzxDaLFqjWe8y5YMu8Ypm8=";
passthru.tests = { inherit (nixosTests.prometheus-exporters) bird; };
meta = {
description = "Prometheus exporter for the bird routing daemon";
mainProgram = "bird_exporter";
homepage = "https://github.com/czerwonk/bird_exporter";
changelog = "https://github.com/czerwonk/bird_exporter/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ lukegb ];
mainProgram = "bird_exporter";
};
}
})