1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-26 07:31:20 +00:00
nixpkgs/pkgs/os-specific/linux/mcelog/default.nix

31 lines
774 B
Nix
Raw Normal View History

2015-04-16 23:42:45 +01:00
{ stdenv, fetchFromGitHub }:
2015-04-29 20:43:49 +01:00
let version = "117"; in
2015-04-16 23:42:45 +01:00
stdenv.mkDerivation {
name = "mcelog-${version}";
2015-04-16 23:42:45 +01:00
src = fetchFromGitHub {
2015-04-29 20:43:49 +01:00
sha256 = "0szc5s0bag16ypna336spwb5fagwbxaparn0h78w73wv05kcvwqw";
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/;
2015-04-16 23:42:45 +01:00
license = with licenses; gpl2;
maintainers = with maintainers; [ nckx ];
};
}