mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
25 lines
721 B
Nix
25 lines
721 B
Nix
{ lib, buildGoModule, fetchFromGitHub, nixosTests }:
|
|
|
|
buildGoModule rec {
|
|
pname = "bind_exporter";
|
|
version = "0.7.0";
|
|
|
|
src = fetchFromGitHub {
|
|
rev = "v${version}";
|
|
owner = "prometheus-community";
|
|
repo = "bind_exporter";
|
|
sha256 = "sha256-x/XGatlXCKo9cI92JzFItApsjuZAfZX+8IZRpy7PVUo=";
|
|
};
|
|
|
|
vendorHash = "sha256-f0ei/zotOj5ebURAOWUox/7J3jS2abQ5UgjninI9nRk=";
|
|
|
|
passthru.tests = { inherit (nixosTests.prometheus-exporters) bind; };
|
|
|
|
meta = with lib; {
|
|
description = "Prometheus exporter for bind9 server";
|
|
mainProgram = "bind_exporter";
|
|
homepage = "https://github.com/digitalocean/bind_exporter";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ rtreffer ];
|
|
};
|
|
}
|