Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
45 lines
1022 B
Nix
45 lines
1022 B
Nix
{
|
|
stdenv,
|
|
rustPlatform,
|
|
fetchFromGitHub,
|
|
lib,
|
|
libiconv,
|
|
nixosTests,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "wireguard-exporter";
|
|
version = "3.6.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "MindFlavor";
|
|
repo = "prometheus_wireguard_exporter";
|
|
rev = version;
|
|
sha256 = "sha256-2e31ZuGJvpvu7L2Lb+n6bZWpC1JhETzEzSiNaxxsAtA=";
|
|
};
|
|
|
|
cargoHash = "sha256-PVjeCKGHiHo+OtjIxMZBBJ19Z3807R34Oyu/HYZO90U=";
|
|
|
|
postPatch = ''
|
|
# drop hardcoded linker names, fixing static build
|
|
rm .cargo/config.toml
|
|
'';
|
|
|
|
buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [
|
|
libiconv
|
|
];
|
|
|
|
passthru.tests = { inherit (nixosTests.prometheus-exporters) wireguard; };
|
|
|
|
meta = with lib; {
|
|
description = "Prometheus exporter for WireGuard, written in Rust";
|
|
homepage = "https://github.com/MindFlavor/prometheus_wireguard_exporter";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [
|
|
ma27
|
|
globin
|
|
];
|
|
mainProgram = "prometheus_wireguard_exporter";
|
|
};
|
|
}
|