aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/os-specific/linux/mcelog/default.nix
diff options
context:
space:
mode:
authorMx Kookie <kookie@spacekookie.de>2020-10-31 19:35:09 +0100
committerMx Kookie <kookie@spacekookie.de>2020-10-31 19:35:09 +0100
commitc4625b175f8200f643fd6e11010932ea44c78433 (patch)
treebce3f89888c8ac3991fa5569a878a9eab6801ccc /infra/libkookie/nixpkgs/pkgs/os-specific/linux/mcelog/default.nix
parent49f735974dd103039ddc4cb576bb76555164a9e7 (diff)
parentd661aa56a8843e991261510c1bb28fdc2f6975ae (diff)
Add 'infra/libkookie/' from commit 'd661aa56a8843e991261510c1bb28fdc2f6975ae'
git-subtree-dir: infra/libkookie git-subtree-mainline: 49f735974dd103039ddc4cb576bb76555164a9e7 git-subtree-split: d661aa56a8843e991261510c1bb28fdc2f6975ae
Diffstat (limited to 'infra/libkookie/nixpkgs/pkgs/os-specific/linux/mcelog/default.nix')
-rw-r--r--infra/libkookie/nixpkgs/pkgs/os-specific/linux/mcelog/default.nix51
1 files changed, 51 insertions, 0 deletions
diff --git a/infra/libkookie/nixpkgs/pkgs/os-specific/linux/mcelog/default.nix b/infra/libkookie/nixpkgs/pkgs/os-specific/linux/mcelog/default.nix
new file mode 100644
index 000000000000..9ead1f6ad4bd
--- /dev/null
+++ b/infra/libkookie/nixpkgs/pkgs/os-specific/linux/mcelog/default.nix
@@ -0,0 +1,51 @@
+{ stdenv, fetchFromGitHub, utillinux }:
+
+stdenv.mkDerivation rec {
+ pname = "mcelog";
+ version = "169";
+
+ src = fetchFromGitHub {
+ owner = "andikleen";
+ repo = "mcelog";
+ rev = "v${version}";
+ sha256 = "0ghkwfaky026qwj6hmcvz2w2hm8qqj3ysbkxxi603vslmwj56chv";
+ };
+
+ 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;
+ };
+}