speedtest-exporter: init at 0.3.2

Fixes #107588
This commit is contained in:
Colin Arnott 2022-11-26 09:58:36 +00:00
parent 2afac7a20c
commit 7037d9d527
No known key found for this signature in database
GPG Key ID: 0447A663F7F3E236
2 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,26 @@
{ buildGoModule
, fetchFromGitHub
, lib
}:
buildGoModule rec {
pname = "speedtest-exporter";
version = "0.3.2";
src = fetchFromGitHub {
owner = "nlamirault";
repo = "speedtest_exporter";
rev = "v${version}";
hash = "sha256-WIMDv63sHyZVw3Ct5LFXCIufj7sU2H81n+hT/NiPMeQ=";
};
vendorHash = "sha256-Lm73pZzdNZv7J+vKrtQXxm4HiAuB9lugKT/oanmD0HM=";
meta = with lib; {
description = "Prometheus exporter for Speedtest metrics";
homepage = "https://github.com/nlamirault/speedtest_exporter";
license = licenses.asl20;
maintainers = with maintainers; [ urandom ];
mainProgram = "speedtest_exporter";
};
}

View File

@ -22561,6 +22561,8 @@ with pkgs;
speech-tools = callPackage ../development/libraries/speech-tools {};
speedtest-exporter = callPackage ../development/libraries/speedtest-exporter {};
speex = callPackage ../development/libraries/speex {
fftw = fftwFloat;
};