blob: 1af4dce118a6bd32559eef2abb2893454b00e965 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
{
lib,
stdenv,
fetchFromGitHub,
util-linux,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "mcelog";
version = "210";
src = fetchFromGitHub {
owner = "andikleen";
repo = "mcelog";
tag = "v${finalAttrs.version}";
hash = "sha256-RcIcEu9Y6ggYHDP46hMA/HBXq447gYbOzCcyEAiBDNM=";
};
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;
};
})
|