2016-09-01 16:01:00 +01:00
|
|
|
{ stdenv, fetchFromGitHub, utillinux }:
|
2012-02-24 20:20:59 +00:00
|
|
|
|
2016-01-24 19:31:44 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "mcelog";
|
2020-05-06 03:49:54 +01:00
|
|
|
version = "169";
|
2012-02-24 20:20:59 +00:00
|
|
|
|
2015-04-16 23:42:45 +01:00
|
|
|
src = fetchFromGitHub {
|
2017-07-27 06:03:26 +01:00
|
|
|
owner = "andikleen";
|
|
|
|
repo = "mcelog";
|
|
|
|
rev = "v${version}";
|
2020-05-06 03:49:54 +01:00
|
|
|
sha256 = "0ghkwfaky026qwj6hmcvz2w2hm8qqj3ysbkxxi603vslmwj56chv";
|
2012-02-24 20:20:59 +00:00
|
|
|
};
|
|
|
|
|
2015-04-23 00:48:21 +01:00
|
|
|
postPatch = ''
|
|
|
|
for i in mcelog.conf paths.h; do
|
|
|
|
substituteInPlace $i --replace /etc $out/etc
|
|
|
|
done
|
|
|
|
touch mcelog.conf.5 # avoid regeneration requiring Python
|
2015-09-29 02:35:55 +01:00
|
|
|
|
|
|
|
substituteInPlace Makefile --replace '"unknown"' '"${version}"'
|
2016-09-01 16:01:00 +01:00
|
|
|
|
|
|
|
for i in triggers/*; do
|
|
|
|
substituteInPlace $i --replace 'logger' '${utillinux}/bin/logger'
|
|
|
|
done
|
2013-01-20 17:51:41 +00:00
|
|
|
'';
|
|
|
|
|
2015-09-29 22:08:34 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2015-11-26 17:44:44 +00:00
|
|
|
installFlags = [ "DESTDIR=$(out)" "prefix=" "DOCDIR=/share/doc" ];
|
2015-04-23 00:48:21 +01:00
|
|
|
|
2017-07-27 06:03:26 +01:00
|
|
|
postInstall = ''
|
|
|
|
mkdir -p $out/lib/systemd/system
|
|
|
|
substitute mcelog.service $out/lib/systemd/system/mcelog.service \
|
|
|
|
--replace /usr/sbin $out/bin
|
|
|
|
'';
|
|
|
|
|
2015-04-16 23:42:45 +01:00
|
|
|
meta = with stdenv.lib; {
|
2015-08-21 12:20:05 +01:00
|
|
|
description = "Log x86 machine checks: memory, IO, and CPU hardware errors";
|
|
|
|
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.
|
|
|
|
'';
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://mcelog.org/";
|
2015-05-28 18:20:29 +01:00
|
|
|
license = licenses.gpl2;
|
2015-08-21 12:20:05 +01:00
|
|
|
platforms = platforms.linux;
|
2012-02-24 20:20:59 +00:00
|
|
|
};
|
2013-01-20 17:51:41 +00:00
|
|
|
}
|