nixpkgs/pkgs/os-specific/linux/irqbalance/default.nix

26 lines
726 B
Nix
Raw Normal View History

2017-08-01 01:50:48 +02:00
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, glib, ncurses, libcap_ng }:
2016-01-03 18:05:18 +01:00
stdenv.mkDerivation rec {
pname = "irqbalance";
version = "1.6.0";
2016-01-03 18:05:18 +01:00
src = fetchFromGitHub {
owner = "irqbalance";
repo = "irqbalance";
2017-08-01 01:50:48 +02:00
rev = "v${version}";
sha256 = "01r9s63yxaijg8jqcbkwqlyqq2z673szb0vzd7qb2y3gk5jlif2y";
2016-01-03 18:05:18 +01:00
};
2017-08-01 01:50:48 +02:00
nativeBuildInputs = [ autoreconfHook pkgconfig ];
buildInputs = [ glib ncurses libcap_ng ];
2016-01-03 18:05:18 +01:00
2017-08-01 01:50:48 +02:00
LDFLAGS = "-lncurses";
2016-01-03 18:05:18 +01: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;
};
}