mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-28 14:22:50 +03:00
mcelog: 122 -> 123
Also flesh out descriptions and restrict to Linux platforms.
This commit is contained in:
parent
65e2f18885
commit
c757628f0a
@ -1,11 +1,11 @@
|
|||||||
{ stdenv, fetchFromGitHub }:
|
{ stdenv, fetchFromGitHub }:
|
||||||
|
|
||||||
let version = "122"; in
|
let version = "123"; in
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name = "mcelog-${version}";
|
name = "mcelog-${version}";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
sha256 = "0g3bp6wfgpjh345n988r2bxzdkbac8mls9v7fsylmfxf78y7n92d";
|
sha256 = "0hrpqx0wfwribzm3j132k0869xbh5wa89pzhwcych5w2w0n2i890";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
repo = "mcelog";
|
repo = "mcelog";
|
||||||
owner = "andikleen";
|
owner = "andikleen";
|
||||||
@ -22,9 +22,18 @@ stdenv.mkDerivation {
|
|||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
inherit version;
|
inherit version;
|
||||||
description = "Log machine checks (memory, IO, and CPU hardware errors)";
|
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/;
|
homepage = http://mcelog.org/;
|
||||||
license = licenses.gpl2;
|
license = licenses.gpl2;
|
||||||
|
platforms = platforms.linux;
|
||||||
maintainers = with maintainers; [ nckx ];
|
maintainers = with maintainers; [ nckx ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user