mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
38 lines
1.1 KiB
Nix
38 lines
1.1 KiB
Nix
{ lib, buildGoModule, fetchFromGitHub, nixosTests }:
|
|
|
|
buildGoModule rec {
|
|
pname = "smokeping_prober";
|
|
version = "0.8.1";
|
|
|
|
ldflags = let
|
|
setVars = rec {
|
|
Version = version;
|
|
Revision = "722200c4adbd6d1e5d847dfbbd9dec07aa4ca38d";
|
|
Branch = Revision;
|
|
BuildUser = "nix";
|
|
};
|
|
varFlags = lib.concatStringsSep " " (lib.mapAttrsToList (name: value: "-X github.com/prometheus/common/version.${name}=${value}") setVars);
|
|
in [
|
|
"${varFlags}" "-s" "-w"
|
|
];
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "SuperQ";
|
|
repo = "smokeping_prober";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-CqUkJLyxCuBDbfPLSXuGNlyg5POh6jYyXUxQ9tF+w3s=";
|
|
};
|
|
vendorHash = "sha256-iKAT10pD2ctVIBdDw/AmHYtoZDW9XC8ruIxqlVoAuWY=";
|
|
|
|
doCheck = true;
|
|
|
|
passthru.tests = { inherit (nixosTests.prometheus-exporters) smokeping; };
|
|
|
|
meta = with lib; {
|
|
description = "Prometheus exporter for sending continual ICMP/UDP pings";
|
|
mainProgram = "smokeping_prober";
|
|
homepage = "https://github.com/SuperQ/smokeping_prober";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ lukegb ];
|
|
};
|
|
}
|