nixpkgs/pkgs/os-specific/linux/mcelog/default.nix
Tobias Geerinckx-Rice cdeb2e5886 mcelog 115 -> 116
Added Knights Landing (Xeon Phi) support.
2015-04-28 21:32:22 +02:00

31 lines
774 B
Nix

{ stdenv, fetchFromGitHub }:
let version = "116"; in
stdenv.mkDerivation {
name = "mcelog-${version}";
src = fetchFromGitHub {
sha256 = "0nr3b924ardz9c1skna8finrjq22ac2vihp3zck9jixc9d5mvrmf";
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
'';
installFlags = "DESTDIR=$(out) prefix= DOCDIR=/share/doc";
meta = with stdenv.lib; {
inherit version;
description = "Log machine checks (memory, IO, and CPU hardware errors)";
homepage = http://mcelog.org/;
license = with licenses; gpl2;
maintainers = with maintainers; [ nckx ];
};
}