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

36 lines
1.1 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, glib, ncurses, libcap_ng }:
2016-01-03 17:05:18 +00:00
stdenv.mkDerivation rec {
pname = "irqbalance";
2020-08-11 03:57:07 +00:00
version = "1.7.0";
2016-01-03 17:05:18 +00:00
src = fetchFromGitHub {
owner = "irqbalance";
repo = "irqbalance";
2017-07-31 23:50:48 +00:00
rev = "v${version}";
2020-08-11 03:57:07 +00:00
sha256 = "1677ap6z4hvwga0vb8hrvpc0qggyarg9mlg11pxywz7mq94vdx19";
2016-01-03 17:05:18 +00:00
};
nativeBuildInputs = [ autoreconfHook pkg-config ];
2017-07-31 23:50:48 +00:00
buildInputs = [ glib ncurses libcap_ng ];
2016-01-03 17:05:18 +00:00
2017-07-31 23:50:48 +00:00
LDFLAGS = "-lncurses";
2016-01-03 17:05:18 +00:00
postInstall =
''
# Systemd service
mkdir -p $out/lib/systemd/system
grep -vi "EnvironmentFile" misc/irqbalance.service >$out/lib/systemd/system/irqbalance.service
substituteInPlace $out/lib/systemd/system/irqbalance.service \
--replace /usr/sbin/irqbalance $out/bin/irqbalance \
--replace ' $IRQBALANCE_ARGS' ""
'';
2016-01-03 17:05:18 +00:00
meta = {
homepage = "https://github.com/Irqbalance/irqbalance";
2016-01-03 17:05:18 +00:00
description = "A daemon to help balance the cpu load generated by interrupts across all of a systems cpus";
2021-01-15 14:45:37 +00:00
license = lib.licenses.gpl2;
platforms = lib.platforms.linux;
2016-01-03 17:05:18 +00:00
};
}