about summary refs log tree commit diff
path: root/pkgs/servers/monitoring/prometheus/smartctl-exporter/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/servers/monitoring/prometheus/smartctl-exporter/default.nix')
-rw-r--r--pkgs/servers/monitoring/prometheus/smartctl-exporter/default.nix34
1 files changed, 0 insertions, 34 deletions
diff --git a/pkgs/servers/monitoring/prometheus/smartctl-exporter/default.nix b/pkgs/servers/monitoring/prometheus/smartctl-exporter/default.nix
deleted file mode 100644
index b03a006982ec..000000000000
--- a/pkgs/servers/monitoring/prometheus/smartctl-exporter/default.nix
+++ /dev/null
@@ -1,34 +0,0 @@
-{ lib
-, fetchFromGitHub
-, buildGoModule
-, nixosTests
-}:
-
-buildGoModule rec {
-  pname = "smartctl_exporter";
-  version = "0.12.0";
-
-  src = fetchFromGitHub {
-    owner = "prometheus-community";
-    repo = pname;
-    rev = "refs/tags/v${version}";
-    hash = "sha256-QQoWAsnE/7ifvgEfQJ6cbzmwOrE7oe2zalTbu/P7r18=";
-  };
-
-  vendorHash = "sha256-WUB2FgBl4Tybz7T0yvcSYIlG75NEhXpn1F0yuB9F21g=";
-
-  ldflags = [
-    "-X github.com/prometheus/common/version.Version=${version}"
-  ];
-
-  passthru.tests = { inherit (nixosTests.prometheus-exporters) smartctl; };
-
-  meta = with lib; {
-    description = "Export smartctl statistics for Prometheus";
-    mainProgram = "smartctl_exporter";
-    homepage = "https://github.com/prometheus-community/smartctl_exporter";
-    license = licenses.lgpl3;
-    platforms = platforms.linux;
-    maintainers = with maintainers; [ hexa Frostman ];
-  };
-}