nixpkgs/pkgs/os-specific/linux/mcelog/default.nix
Ryan Mulligan f447438038 mcelog: 154 -> 156
Semi-automatic update generated by https://github.com/ryantm/nix-update tools. These checks were done:

- built on NixOS
- ran `/nix/store/3zc741ihwv728148wk2m7a61hj9rrp5c-mcelog-156/bin/mcelog --help` got 0 exit code
- ran `/nix/store/3zc741ihwv728148wk2m7a61hj9rrp5c-mcelog-156/bin/mcelog --version` and found version 156
- ran `/nix/store/3zc741ihwv728148wk2m7a61hj9rrp5c-mcelog-156/bin/mcelog --help` and found version 156
- found 156 with grep in /nix/store/3zc741ihwv728148wk2m7a61hj9rrp5c-mcelog-156
- found 156 in filename of file in /nix/store/3zc741ihwv728148wk2m7a61hj9rrp5c-mcelog-156
2018-03-14 21:40:24 -07:00

52 lines
1.6 KiB
Nix

{ stdenv, fetchFromGitHub, utillinux }:
stdenv.mkDerivation rec {
name = "mcelog-${version}";
version = "156";
src = fetchFromGitHub {
owner = "andikleen";
repo = "mcelog";
rev = "v${version}";
sha256 = "0mv4sxcysl3m9wqybg6b363mawr9amzhc9v53775p4p2a47z774r";
};
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}"'
for i in triggers/*; do
substituteInPlace $i --replace 'logger' '${utillinux}/bin/logger'
done
'';
enableParallelBuilding = true;
installFlags = [ "DESTDIR=$(out)" "prefix=" "DOCDIR=/share/doc" ];
postInstall = ''
mkdir -p $out/lib/systemd/system
substitute mcelog.service $out/lib/systemd/system/mcelog.service \
--replace /usr/sbin $out/bin
'';
meta = with stdenv.lib; {
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;
};
}