This reverts commit 65a333600d5c88a98d674f637d092807cfc12253. This wasn't tested for correctness with something like fodwatch [0], and should not have been (self-)merged so quickly, especially without further review. It also resulted in the breakage of at least one package [1] (and that's the one we know of and was caught). A few packages that were updated in between this commit and this revert were not reverted back to using `rev`, but other than that, this is a 1:1 revert. [0]: https://codeberg.org/raphaelr/fodwatch [1]: https://github.com/NixOS/nixpkgs/pull/396904 / 758551e4587d75882aebc21a04bee960418f8ce9
62 lines
1.6 KiB
Nix
62 lines
1.6 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
util-linux,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "mcelog";
|
|
version = "180";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "andikleen";
|
|
repo = "mcelog";
|
|
rev = "v${version}";
|
|
sha256 = "1xy1082c67yd48idg5vwvrw7yx74gn6jj2d9c67d0rh6yji091ki";
|
|
};
|
|
|
|
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' '${util-linux}/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 lib; {
|
|
description = "Log x86 machine checks: memory, IO, and CPU hardware errors";
|
|
mainProgram = "mcelog";
|
|
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.gpl2Plus;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|