Luke Granger-Brown
57725ef3ec
git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
32 lines
1,006 B
Nix
32 lines
1,006 B
Nix
{ stdenv, rustPlatform, fetchFromGitHub, lib, libiconv, Security, 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-NsxGpjuZPpz4gCJRp5IOcfRFh8DTud47nV2bE0/kc2Q=";
|
|
|
|
postPatch = ''
|
|
# drop hardcoded linker names, fixing static build
|
|
rm .cargo/config.toml
|
|
'';
|
|
|
|
buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ libiconv Security ];
|
|
|
|
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";
|
|
};
|
|
}
|