jql: 8.0.0 -> 8.0.2 (#362884)
[NixPkgs.git] / pkgs / servers / monitoring / prometheus / atlas-exporter.nix
blob5aaa34f65c52f78806312d9949025a3b462c28ab
2   lib,
3   buildGoModule,
4   fetchFromGitHub,
5 }:
7 buildGoModule rec {
8   pname = "atlas-exporter";
9   version = "1.0.4";
11   src = fetchFromGitHub {
12     owner = "czerwonk";
13     repo = "atlas_exporter";
14     rev = version;
15     sha256 = "sha256-vhUhWO7fQpUHT5nyxbT8AylgUqDNZRSb+EGRNGZJ14E=";
16   };
18   vendorHash = "sha256-tR+OHxj/97AixuAp0Kx9xQsKPAxpvF6hDha5BgMBha0=";
20   meta = with lib; {
21     description = "Prometheus exporter for RIPE Atlas measurement results";
22     mainProgram = "atlas_exporter";
23     homepage = "https://github.com/czerwonk/atlas_exporter";
24     license = licenses.lgpl3;
25     maintainers = with maintainers; [ clerie ];
26   };