Merge pull request #128641 from fortuneteller2k/irqbalance

irqbalance: 1.7.0 -> 1.8.0

authored by Sandro and committed by GitHub 9ad3e8a9 880de16a

+8 -5
+8 -5
pkgs/os-specific/linux/irqbalance/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "irqbalance"; 5 - version = "1.7.0"; 5 + version = "1.8.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "irqbalance"; 9 9 repo = "irqbalance"; 10 10 rev = "v${version}"; 11 - sha256 = "1677ap6z4hvwga0vb8hrvpc0qggyarg9mlg11pxywz7mq94vdx19"; 11 + sha256 = "sha256-K+Nv6HqBZb0pwfNV127QDq+suaUD7TTV413S6j8NdUU="; 12 12 }; 13 13 14 14 nativeBuildInputs = [ autoreconfHook pkg-config ]; 15 + 15 16 buildInputs = [ glib ncurses libcap_ng ]; 16 17 17 18 LDFLAGS = "-lncurses"; ··· 26 27 --replace ' $IRQBALANCE_ARGS' "" 27 28 ''; 28 29 29 - meta = { 30 + meta = with lib; { 30 31 homepage = "https://github.com/Irqbalance/irqbalance"; 32 + changelog = "https://github.com/Irqbalance/irqbalance/releases/tag/v${version}"; 31 33 description = "A daemon to help balance the cpu load generated by interrupts across all of a systems cpus"; 32 - license = lib.licenses.gpl2; 33 - platforms = lib.platforms.linux; 34 + license = licenses.gpl2Only; 35 + platforms = platforms.linux; 36 + maintainers = with maintainers; [ fortuneteller2k ]; 34 37 }; 35 38 }