nixpkgs/pkgs/os-specific/linux/mcelog/default.nix

44 lines
1.4 KiB
Nix
Raw Normal View History

2015-04-16 22:42:45 +00:00
{ stdenv, fetchFromGitHub }:
let version = "128"; in
2015-04-16 22:42:45 +00:00
stdenv.mkDerivation {
name = "mcelog-${version}";
2015-04-16 22:42:45 +00:00
src = fetchFromGitHub {
sha256 = "0hm1dmqyh36dig158iyb9fckmvqnd5sgpy1qzj59nsg40pb1vbjs";
2015-04-16 22:42:45 +00:00
rev = "v${version}";
repo = "mcelog";
owner = "andikleen";
};
postPatch = ''
for i in mcelog.conf paths.h; do
substituteInPlace $i --replace /etc $out/etc
done
touch mcelog.conf.5 # avoid regeneration requiring Python
substituteInPlace Makefile --replace '"unknown"' '"${version}"'
'';
2015-09-29 21:08:34 +00:00
enableParallelBuilding = true;
installFlags = "DESTDIR=$(out) prefix= DOCDIR=/share/doc";
2015-04-16 22:42:45 +00:00
meta = with stdenv.lib; {
inherit version;
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.
'';
homepage = http://mcelog.org/;
license = licenses.gpl2;
platforms = platforms.linux;
2015-04-16 22:42:45 +00:00
maintainers = with maintainers; [ nckx ];
};
}