mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
b5c1deca8a
He prefers to contribute to his own nixpkgs fork triton. Since he is still marked as maintainer in many packages this leaves the wrong impression he still maintains those.
38 lines
901 B
Nix
38 lines
901 B
Nix
{ stdenv, fetchFromGitHub, perl, makeWrapper
|
|
, sysfsutils, dmidecode, kmod }:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "edac-utils-2015-01-07";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "grondo";
|
|
repo = "edac-utils";
|
|
rev = "f9aa96205f610de39a79ff43c7478b7ef02e3138";
|
|
sha256 = "1dmfqb15ffldl5zirbmwiqzpxbcc2ny9rpfvxcfvpmh5b69knvdg";
|
|
};
|
|
|
|
nativeBuildInputs = [ perl makeWrapper ];
|
|
buildInputs = [ sysfsutils ];
|
|
|
|
configureFlags = [
|
|
"--sysconfdir=/etc"
|
|
"--localstatedir=/var"
|
|
];
|
|
|
|
installFlags = [
|
|
"sysconfdir=\${out}/etc"
|
|
];
|
|
|
|
postInstall = ''
|
|
wrapProgram "$out/sbin/edac-ctl" \
|
|
--set PATH ${stdenv.lib.makeBinPath [ dmidecode kmod ]}
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://github.com/grondo/edac-utils;
|
|
description = "Handles the reporting of hardware-related memory errors";
|
|
license = licenses.gpl2;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|