2017-08-01 00:50:48 +01:00
|
|
|
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, glib, ncurses, libcap_ng }:
|
2016-01-03 17:05:18 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2017-08-01 00:50:48 +01:00
|
|
|
name = "irqbalance-${version}";
|
2018-05-21 02:25:49 +01:00
|
|
|
version = "1.4.0";
|
2016-01-03 17:05:18 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "irqbalance";
|
|
|
|
repo = "irqbalance";
|
2017-08-01 00:50:48 +01:00
|
|
|
rev = "v${version}";
|
2018-05-21 02:25:49 +01:00
|
|
|
sha256 = "05q3cdz2a5zp5s2bdz5a80y9vq7awqw9lbvyvh6vjs9a8vg80hwm";
|
2016-01-03 17:05:18 +00:00
|
|
|
};
|
|
|
|
|
2017-08-01 00:50:48 +01:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
|
|
|
buildInputs = [ glib ncurses libcap_ng ];
|
2016-01-03 17:05:18 +00:00
|
|
|
|
2017-08-01 00:50:48 +01:00
|
|
|
LDFLAGS = "-lncurses";
|
2016-01-03 17:05:18 +00:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = https://github.com/Irqbalance/irqbalance;
|
|
|
|
description = "A daemon to help balance the cpu load generated by interrupts across all of a systems cpus";
|
|
|
|
license = stdenv.lib.licenses.gpl2;
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
|
|
|
};
|
|
|
|
}
|