2021-05-18 11:11:45 +00:00
|
|
|
{ stdenv, rustPlatform, fetchFromGitHub, lib, libiconv, Security, nixosTests }:
|
2019-06-02 01:13:53 +00:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "wireguard-exporter";
|
2021-05-05 21:00:02 +00:00
|
|
|
version = "3.5.0";
|
2019-06-02 01:13:53 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "MindFlavor";
|
|
|
|
repo = "prometheus_wireguard_exporter";
|
|
|
|
rev = version;
|
2021-05-05 21:00:02 +00:00
|
|
|
sha256 = "sha256-LHhqQ0p2qt6ZAdkpY1SEAcGXH47TPhHvlDv+eL8GC58=";
|
2019-06-02 01:13:53 +00:00
|
|
|
};
|
|
|
|
|
2021-05-05 21:00:02 +00:00
|
|
|
cargoSha256 = "sha256-lNFsO7FSmH1+DLM7ID0vn6234qTdtUoaLSnqKcbHoXE=";
|
2019-06-02 01:13:53 +00:00
|
|
|
|
2021-05-18 11:11:45 +00:00
|
|
|
buildInputs = lib.optionals stdenv.isDarwin [ libiconv Security ];
|
2019-06-02 01:13:53 +00:00
|
|
|
|
2020-06-18 10:48:40 +00:00
|
|
|
passthru.tests = { inherit (nixosTests.prometheus-exporters) wireguard; };
|
|
|
|
|
2019-06-02 01:13:53 +00:00
|
|
|
meta = with lib; {
|
2020-10-11 05:55:05 +00:00
|
|
|
description = "A Prometheus exporter for WireGuard, written in Rust";
|
2020-03-07 14:47:19 +00:00
|
|
|
homepage = "https://github.com/MindFlavor/prometheus_wireguard_exporter";
|
2019-06-02 01:13:53 +00:00
|
|
|
license = licenses.mit;
|
2019-08-20 17:36:05 +00:00
|
|
|
maintainers = with maintainers; [ ma27 globin ];
|
2019-06-02 01:13:53 +00:00
|
|
|
};
|
|
|
|
}
|