2015-04-17 01:42:45 +03:00
|
|
|
{ stdenv, fetchFromGitHub }:
|
2012-02-25 00:20:59 +04:00
|
|
|
|
2016-01-24 22:31:44 +03:00
|
|
|
stdenv.mkDerivation rec {
|
2012-02-25 00:20:59 +04:00
|
|
|
name = "mcelog-${version}";
|
2016-03-06 01:43:28 +03:00
|
|
|
version = "133";
|
2012-02-25 00:20:59 +04:00
|
|
|
|
2015-04-17 01:42:45 +03:00
|
|
|
src = fetchFromGitHub {
|
2016-03-06 01:43:28 +03:00
|
|
|
sha256 = "1qj9jz67bd834sgqcxhyhn9fzxg8y9vfw7gmza5ikmjm6yi6mmfr";
|
2015-04-17 01:42:45 +03:00
|
|
|
rev = "v${version}";
|
|
|
|
repo = "mcelog";
|
|
|
|
owner = "andikleen";
|
2012-02-25 00:20:59 +04:00
|
|
|
};
|
|
|
|
|
2015-04-23 02:48:21 +03: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 04:35:55 +03:00
|
|
|
|
|
|
|
substituteInPlace Makefile --replace '"unknown"' '"${version}"'
|
2013-01-20 21:51:41 +04:00
|
|
|
'';
|
|
|
|
|
2015-09-30 00:08:34 +03:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2015-11-26 20:44:44 +03:00
|
|
|
installFlags = [ "DESTDIR=$(out)" "prefix=" "DOCDIR=/share/doc" ];
|
2015-04-23 02:48:21 +03:00
|
|
|
|
2015-04-17 01:42:45 +03:00
|
|
|
meta = with stdenv.lib; {
|
2015-08-21 14:20:05 +03: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-25 00:20:59 +04:00
|
|
|
homepage = http://mcelog.org/;
|
2015-05-28 20:20:29 +03:00
|
|
|
license = licenses.gpl2;
|
2015-08-21 14:20:05 +03:00
|
|
|
platforms = platforms.linux;
|
2015-04-17 01:42:45 +03:00
|
|
|
maintainers = with maintainers; [ nckx ];
|
2012-02-25 00:20:59 +04:00
|
|
|
};
|
2013-01-20 21:51:41 +04:00
|
|
|
}
|