From 1c99c911408c89b163bc3358e30364fb368fb877 Mon Sep 17 00:00:00 2001 From: Kjetil Orbekk Date: Mon, 8 Mar 2021 13:09:01 -0500 Subject: nftables exporter --- flake.nix | 10 ++++++++++ pkgs/nftables-exporter.nix | 29 +++++++++++++++++++++++++++++ 2 files changed, 39 insertions(+) create mode 100644 pkgs/nftables-exporter.nix diff --git a/flake.nix b/flake.nix index af0abce..4024d90 100644 --- a/flake.nix +++ b/flake.nix @@ -53,6 +53,16 @@ inherit pkgs-module; }; + packages."x86_64-linux" = + let + pkgs = import nixpkgs { + system = "x86_64-linux"; + }; + in + { + nftables-exporter = pkgs.callPackage ./pkgs/nftables-exporter.nix {}; + }; + nixosConfigurations = let mkConfig = { hostName , module ? (./. + "/machines/${hostName}.nix") diff --git a/pkgs/nftables-exporter.nix b/pkgs/nftables-exporter.nix new file mode 100644 index 0000000..956eab5 --- /dev/null +++ b/pkgs/nftables-exporter.nix @@ -0,0 +1,29 @@ +{ lib, buildGoModule, fetchFromGitHub }: + +buildGoModule rec { + pname = "nftables_exporter"; + version = "0.1.1"; + + goPackagePath = "github.com/Intrinsec/nftables_exporter"; + + src = fetchFromGitHub { + owner = "Intrinsec"; + repo = "nftables_exporter"; + rev = "v${version}"; + sha256 = "ckZxgT4eCJlia9L6omL3EJqgew49erY11dEAnsRECx4="; + }; + + vendorSha256 = null; + + doCheck = true; + + # passthru.tests = { inherit (nixosTests.prometheus-exporters) snmp; }; + + meta = with lib; { + description = "Nftables exporter for Prometheus"; + homepage = "https://github.com/prometheus/snmp_exporter"; + license = licenses.asl20; + maintainers = with maintainers; [ orbekk ]; + platforms = platforms.unix; + }; +} -- cgit v1.2.3