1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/os-specific/linux/mcelog/default.nix

31 lines
768 B
Nix
Raw Normal View History

2015-04-16 23:42:45 +01:00
{ stdenv, fetchFromGitHub }:
let version = "118"; in
2015-04-16 23:42:45 +01:00
stdenv.mkDerivation {
name = "mcelog-${version}";
2015-04-16 23:42:45 +01:00
src = fetchFromGitHub {
sha256 = "04hzadxyqlnhjn328bv711lpkipfn5k3gszswydmvvjpis2vhbrr";
2015-04-16 23:42:45 +01:00
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";
2015-04-16 23:42:45 +01:00
meta = with stdenv.lib; {
inherit version;
description = "Log machine checks (memory, IO, and CPU hardware errors)";
homepage = http://mcelog.org/;
license = licenses.gpl2;
2015-04-16 23:42:45 +01:00
maintainers = with maintainers; [ nckx ];
};
}