Files
nixpkgs/pkgs/os-specific/linux/mcelog/default.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

63 lines
1.7 KiB
Nix

{
lib,
stdenv,
fetchFromGitHub,
util-linux,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "mcelog";
version = "207";
src = fetchFromGitHub {
owner = "andikleen";
repo = "mcelog";
tag = "v${finalAttrs.version}";
hash = "sha256-ZHhY7pqDuez3QtbhjDr2D/isw+gsoVdfB5WRRchdh6E=";
};
postPatch = ''
patchShebangs .
for i in mcelog.conf paths.h; do
substituteInPlace $i --replace-fail "/etc" "$out/etc"
done
touch mcelog.conf.5 # avoid regeneration requiring Python
substituteInPlace Makefile --replace-fail '"unknown"' '"${finalAttrs.version}"'
for i in triggers/*; do
substituteInPlace $i --replace-fail 'logger' '${util-linux}/bin/logger'
done
'';
enableParallelBuilding = true;
installFlags = [
"DESTDIR=$(out)"
"prefix="
"DOCDIR=/share/doc"
];
postInstall = ''
mkdir -p $out/lib/systemd/system
substitute mcelog.service $out/lib/systemd/system/mcelog.service \
--replace-fail "/usr/sbin" "$out/bin"
'';
meta = {
description = "Log x86 machine checks: memory, IO, and CPU hardware errors";
mainProgram = "mcelog";
longDescription = ''
The mcelog daemon accounts memory and some other errors in various ways
on modern x86 Linux systems. The daemon can be queried and/or execute
triggers when configurable error thresholds are exceeded. This is used to
implement a range of automatic predictive failure analysis algorithms,
including bad page offlining and automatic cache error handling. All
errors are logged to /var/log/mcelog or syslog or the journal.
'';
homepage = "http://mcelog.org/";
license = lib.licenses.gpl2Plus;
platforms = lib.platforms.linux;
};
})