1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/os-specific/linux/irqbalance/default.nix

26 lines
736 B
Nix
Raw Normal View History

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}";
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}";
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;
};
}