summaryrefslogtreecommitdiff
path: root/pkgs
diff options
context:
space:
mode:
authorKjetil Orbekk <kj@orbekk.com>2021-03-08 15:10:35 -0500
committerKjetil Orbekk <kj@orbekk.com>2021-03-08 15:10:35 -0500
commit3138a1b27624be2d6afce53fc41ca9406b4b2168 (patch)
tree8eaff694c1d6de3d9dd9e57fdbc63b36b0277515 /pkgs
parent1c99c911408c89b163bc3358e30364fb368fb877 (diff)
Remove nftables-exporter
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/nftables-exporter.nix29
1 files changed, 0 insertions, 29 deletions
diff --git a/pkgs/nftables-exporter.nix b/pkgs/nftables-exporter.nix
deleted file mode 100644
index 956eab5..0000000
--- a/pkgs/nftables-exporter.nix
+++ /dev/null
@@ -1,29 +0,0 @@
-{ 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;
- };
-}