forked from mirrors/nixpkgs
edac-utils: Add derivation
This commit is contained in:
parent
d983875362
commit
142b48688c
40
pkgs/os-specific/linux/edac-utils/default.nix
Normal file
40
pkgs/os-specific/linux/edac-utils/default.nix
Normal file
|
@ -0,0 +1,40 @@
|
||||||
|
{ 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 : "" \
|
||||||
|
--prefix PATH : "${dmidecode}/bin" \
|
||||||
|
--prefix PATH : "${kmod}/bin"
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = http://github.com/grondo/edac-utils;
|
||||||
|
description = "handles the reporting of hardware-related memory errors.";
|
||||||
|
license = licenses.gpl2;
|
||||||
|
platforms = platforms.linux;
|
||||||
|
maintainers = with maintainers; [ wkennington ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -808,6 +808,8 @@ let
|
||||||
linuxHeaders = linuxHeaders_3_14;
|
linuxHeaders = linuxHeaders_3_14;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
edac-utils = callPackage ../os-specific/linux/edac-utils { };
|
||||||
|
|
||||||
eggdrop = callPackage ../tools/networking/eggdrop { };
|
eggdrop = callPackage ../tools/networking/eggdrop { };
|
||||||
|
|
||||||
enca = callPackage ../tools/text/enca { };
|
enca = callPackage ../tools/text/enca { };
|
||||||
|
|
Loading…
Reference in a new issue