4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
52 lines
1.6 KiB
Nix
52 lines
1.6 KiB
Nix
{ lib, stdenv, fetchFromGitHub, util-linux }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "mcelog";
|
|
version = "173";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "andikleen";
|
|
repo = "mcelog";
|
|
rev = "v${version}";
|
|
sha256 = "1ili11kqacn6jkjpk11vhycgygdl92mymgb1sx22lcwq2x0d248m";
|
|
};
|
|
|
|
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";
|
|
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;
|
|
};
|
|
}
|