lol
1{ lib, buildGoModule, fetchFromGitHub }:
2
3buildGoModule rec {
4 pname = "openvpn_exporter-unstable";
5 version = "0.3.0";
6
7 src = fetchFromGitHub {
8 owner = "kumina";
9 repo = "openvpn_exporter";
10 rev = "v${version}";
11 hash = "sha256-tIB4yujZj36APGAe4doKF4YlEUnieeC8bTV+FFKxpJI=";
12 };
13
14 vendorHash = "sha256-urxzQU0bBS49mBg2jm6jHNZA3MTS3DlQY7D5Fa0F/Mk=";
15
16 meta = with lib; {
17 inherit (src.meta) homepage;
18 description = "Prometheus exporter for OpenVPN";
19 broken = true;
20 license = licenses.asl20;
21 maintainers = with maintainers; [ ];
22 };
23}