Merge pull request #128641 from fortuneteller2k/irqbalance

irqbalance: 1.7.0 -> 1.8.0
This commit is contained in:
Sandro 2021-06-30 00:20:53 +02:00 committed by GitHub
commit 9ad3e8a921
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,16 +2,17 @@
stdenv.mkDerivation rec {
pname = "irqbalance";
version = "1.7.0";
version = "1.8.0";
src = fetchFromGitHub {
owner = "irqbalance";
repo = "irqbalance";
rev = "v${version}";
sha256 = "1677ap6z4hvwga0vb8hrvpc0qggyarg9mlg11pxywz7mq94vdx19";
sha256 = "sha256-K+Nv6HqBZb0pwfNV127QDq+suaUD7TTV413S6j8NdUU=";
};
nativeBuildInputs = [ autoreconfHook pkg-config ];
buildInputs = [ glib ncurses libcap_ng ];
LDFLAGS = "-lncurses";
@ -26,10 +27,12 @@ stdenv.mkDerivation rec {
--replace ' $IRQBALANCE_ARGS' ""
'';
meta = {
meta = with lib; {
homepage = "https://github.com/Irqbalance/irqbalance";
changelog = "https://github.com/Irqbalance/irqbalance/releases/tag/v${version}";
description = "A daemon to help balance the cpu load generated by interrupts across all of a systems cpus";
license = lib.licenses.gpl2;
platforms = lib.platforms.linux;
license = licenses.gpl2Only;
platforms = platforms.linux;
maintainers = with maintainers; [ fortuneteller2k ];
};
}