2015-04-16 23:42:45 +01:00
|
|
|
{ stdenv, fetchFromGitHub }:
|
2012-02-24 20:20:59 +00:00
|
|
|
|
2015-09-14 23:05:05 +01:00
|
|
|
let version = "126"; in
|
2015-04-16 23:42:45 +01:00
|
|
|
stdenv.mkDerivation {
|
2012-02-24 20:20:59 +00:00
|
|
|
name = "mcelog-${version}";
|
|
|
|
|
2015-04-16 23:42:45 +01:00
|
|
|
src = fetchFromGitHub {
|
2015-09-14 23:05:05 +01:00
|
|
|
sha256 = "13vf3qrar9j4pp6zpspgsff0kbp7zj21mq33ywqa7ljq4v3szi8x";
|
2015-04-16 23:42:45 +01:00
|
|
|
rev = "v${version}";
|
|
|
|
repo = "mcelog";
|
|
|
|
owner = "andikleen";
|
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
|
2013-01-20 17:51:41 +00:00
|
|
|
'';
|
|
|
|
|
2015-04-23 00:48:21 +01:00
|
|
|
installFlags = "DESTDIR=$(out) prefix= DOCDIR=/share/doc";
|
|
|
|
|
2015-04-16 23:42:45 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
inherit version;
|
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.
|
|
|
|
'';
|
2012-02-24 20:20:59 +00: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;
|
2015-04-16 23:42:45 +01:00
|
|
|
maintainers = with maintainers; [ nckx ];
|
2012-02-24 20:20:59 +00:00
|
|
|
};
|
2013-01-20 17:51:41 +00:00
|
|
|
}
|