2016-09-01 08:01:00 -07:00
|
|
|
{ stdenv, fetchFromGitHub, utillinux }:
|
2012-02-24 12:20:59 -08:00
|
|
|
|
2016-01-24 11:31:44 -08:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "mcelog";
|
2019-03-27 07:48:44 -07:00
|
|
|
version = "162";
|
2012-02-24 12:20:59 -08:00
|
|
|
|
2015-04-16 15:42:45 -07:00
|
|
|
src = fetchFromGitHub {
|
2017-07-26 22:03:26 -07:00
|
|
|
owner = "andikleen";
|
|
|
|
repo = "mcelog";
|
|
|
|
rev = "v${version}";
|
2019-03-27 07:48:44 -07:00
|
|
|
sha256 = "1zxj545wslp92npll0411grc49l53cgp8dqqn3zb4vcxrvfc4vh9";
|
2012-02-24 12:20:59 -08:00
|
|
|
};
|
|
|
|
|
2015-04-22 16:48:21 -07: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-28 18:35:55 -07:00
|
|
|
|
|
|
|
substituteInPlace Makefile --replace '"unknown"' '"${version}"'
|
2016-09-01 08:01:00 -07:00
|
|
|
|
|
|
|
for i in triggers/*; do
|
|
|
|
substituteInPlace $i --replace 'logger' '${utillinux}/bin/logger'
|
|
|
|
done
|
2013-01-20 09:51:41 -08:00
|
|
|
'';
|
|
|
|
|
2015-09-29 14:08:34 -07:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2015-11-26 09:44:44 -08:00
|
|
|
installFlags = [ "DESTDIR=$(out)" "prefix=" "DOCDIR=/share/doc" ];
|
2015-04-22 16:48:21 -07:00
|
|
|
|
2017-07-26 22:03:26 -07: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 15:42:45 -07:00
|
|
|
meta = with stdenv.lib; {
|
2015-08-21 04:20:05 -07: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 12:20:59 -08:00
|
|
|
homepage = http://mcelog.org/;
|
2015-05-28 10:20:29 -07:00
|
|
|
license = licenses.gpl2;
|
2015-08-21 04:20:05 -07:00
|
|
|
platforms = platforms.linux;
|
2012-02-24 12:20:59 -08:00
|
|
|
};
|
2013-01-20 09:51:41 -08:00
|
|
|
}
|