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