2025-05-29 17:04:28 +02:00

45 lines
1.0 KiB
Nix

{
lib,
fetchFromGitHub,
buildGoModule,
nixosTests,
smartmontools,
}:
buildGoModule rec {
pname = "smartctl_exporter";
version = "0.14.0";
src = fetchFromGitHub {
owner = "prometheus-community";
repo = "smartctl_exporter";
tag = "v${version}";
hash = "sha256-9woQgqkPYKMu8p35aeSv3ua1l35BuMzFT4oCVpmyG2E=";
};
vendorHash = "sha256-bDO7EgCjmObNaYHllczDKuFyKTKH0iCFDSLke6VMsHI=";
postPatch = ''
substituteInPlace main.go README.md \
--replace-fail /usr/sbin/smartctl ${lib.getExe smartmontools}
'';
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
];
};
}