mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-29 18:33:00 +00:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
38 lines
1.2 KiB
Nix
38 lines
1.2 KiB
Nix
{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, glib, ncurses, libcap_ng }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "irqbalance";
|
|
version = "1.9.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "irqbalance";
|
|
repo = "irqbalance";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-7es7wwsPnDSF37uL5SCgAQB+u+qGWmWDHOh3JkHuXMs=";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook pkg-config ];
|
|
buildInputs = [ glib ncurses libcap_ng ];
|
|
|
|
LDFLAGS = "-lncurses";
|
|
|
|
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' ""
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/Irqbalance/irqbalance";
|
|
changelog = "https://github.com/Irqbalance/irqbalance/releases/tag/v${version}";
|
|
description = "Daemon to help balance the cpu load generated by interrupts across all of a systems cpus";
|
|
license = licenses.gpl2Only;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ moni ];
|
|
};
|
|
}
|