Merge pull request #330634 from r-ryantm/auto-update/circumflex
[NixPkgs.git] / pkgs / servers / monitoring / prometheus / atlas-exporter.nix
blob755f1d64e15c80a9d406128bbfce749be0176bb2
1 { lib, buildGoModule, fetchFromGitHub }:
3 buildGoModule rec {
4   pname = "atlas-exporter";
5   version = "1.0.4";
7   src = fetchFromGitHub {
8     owner = "czerwonk";
9     repo = "atlas_exporter";
10     rev = version;
11     sha256 = "sha256-vhUhWO7fQpUHT5nyxbT8AylgUqDNZRSb+EGRNGZJ14E=";
12   };
14   vendorHash = "sha256-tR+OHxj/97AixuAp0Kx9xQsKPAxpvF6hDha5BgMBha0=";
16   meta = with lib; {
17     description = "Prometheus exporter for RIPE Atlas measurement results";
18     mainProgram = "atlas_exporter";
19     homepage = "https://github.com/czerwonk/atlas_exporter";
20     license = licenses.lgpl3;
21     maintainers = with maintainers; [ clerie ];
22   };