2016-09-01 17:01:00 +02:00
|
|
|
{ stdenv, fetchFromGitHub, utillinux }:
|
2012-02-24 21:20:59 +01:00
|
|
|
|
2016-01-24 20:31:44 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2012-02-24 21:20:59 +01:00
|
|
|
name = "mcelog-${version}";
|
2017-07-27 07:03:26 +02:00
|
|
|
version = "153";
|
2012-02-24 21:20:59 +01:00
|
|
|
|
2015-04-17 00:42:45 +02:00
|
|
|
src = fetchFromGitHub {
|
2017-07-27 07:03:26 +02:00
|
|
|
owner = "andikleen";
|
|
|
|
repo = "mcelog";
|
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "1wz55dzqdiam511d6p1958al6vzlhrhs73s7gly0mzm6kpji0gxa";
|
2012-02-24 21:20:59 +01:00
|
|
|
};
|
|
|
|
|
2015-04-23 01:48:21 +02: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 03:35:55 +02:00
|
|
|
|
|
|
|
substituteInPlace Makefile --replace '"unknown"' '"${version}"'
|
2016-09-01 17:01:00 +02:00
|
|
|
|
|
|
|
for i in triggers/*; do
|
|
|
|
substituteInPlace $i --replace 'logger' '${utillinux}/bin/logger'
|
|
|
|
done
|
2013-01-20 18:51:41 +01:00
|
|
|
'';
|
|
|
|
|
2015-09-29 23:08:34 +02:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2015-11-26 18:44:44 +01:00
|
|
|
installFlags = [ "DESTDIR=$(out)" "prefix=" "DOCDIR=/share/doc" ];
|
2015-04-23 01:48:21 +02:00
|
|
|
|
2017-07-27 07:03:26 +02:00
|
|
|
postInstall = ''
|
|
|
|
mkdir -p $out/lib/systemd/system
|
|
|
|
substitute mcelog.service $out/lib/systemd/system/mcelog.service \
|
|
|
|
--replace /usr/sbin $out/bin
|
|
|
|
'';
|
|
|
|
|
2015-04-17 00:42:45 +02:00
|
|
|
meta = with stdenv.lib; {
|
2015-08-21 13:20:05 +02: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 21:20:59 +01:00
|
|
|
homepage = http://mcelog.org/;
|
2015-05-28 19:20:29 +02:00
|
|
|
license = licenses.gpl2;
|
2015-08-21 13:20:05 +02:00
|
|
|
platforms = platforms.linux;
|
2012-02-24 21:20:59 +01:00
|
|
|
};
|
2013-01-20 18:51:41 +01:00
|
|
|
}
|