Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
26 lines
652 B
Nix
26 lines
652 B
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
}:
|
|
buildGoModule {
|
|
pname = "prometheus-dnssec-exporter";
|
|
version = "0-unstable-2023-03-05";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "chrj";
|
|
repo = "prometheus-dnssec-exporter";
|
|
rev = "b638685ed8d5919a88b45e85b3aec702f0fcc393";
|
|
hash = "sha256-SGoQKSgTRfSyA65xEZ9P7Z956sLMhB88h3HaXmFywiQ=";
|
|
};
|
|
|
|
vendorHash = "sha256-u7X8v7h1aL8B1el4jFzGRKHvnaK+Rz0OCitaC6xgyjw=";
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/chrj/prometheus-dnssec-exporter";
|
|
description = "DNSSEC Exporter for Prometheus";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ swendel ];
|
|
};
|
|
}
|