summary refs log blame commit diff
path: root/pkgs/os-specific/linux/mcelog/default.nix
blob: f2b03e1be92d0532219248e932b27a80bf25c3d9 (plain) (tree)
1
2
3
4
5
6
7
8
                            
 
                       
                     

                             
                         
                                                                    


                        

    




                                                             

     

                                                            


                                                                             
                                  
                            
                                             
    
 
{ stdenv, fetchFromGitHub }:

let version = "122"; in
stdenv.mkDerivation {
  name = "mcelog-${version}";

  src = fetchFromGitHub {
    sha256 = "0g3bp6wfgpjh345n988r2bxzdkbac8mls9v7fsylmfxf78y7n92d";
    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 ];
  };
}