mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
31 lines
768 B
Nix
31 lines
768 B
Nix
{ stdenv, fetchFromGitHub }:
|
|
|
|
let version = "121"; in
|
|
stdenv.mkDerivation {
|
|
name = "mcelog-${version}";
|
|
|
|
src = fetchFromGitHub {
|
|
sha256 = "1psdcbr3ssavl35svjzgsy5xl0f2s57s740anvyqy8ziy4k5fjyv";
|
|
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 = licenses.gpl2;
|
|
maintainers = with maintainers; [ nckx ];
|
|
};
|
|
}
|