From bc8224cab6eb57117193f3ac06fcc46d5775cd4c Mon Sep 17 00:00:00 2001 From: Nick Cao Date: Mon, 17 Jul 2023 15:58:34 +0800 Subject: [PATCH] bpftune: unstable-2023-07-11 -> unstable-2023-07-14, enable parallel building Diff: https://github.com/oracle-samples/bpftune/compare/f2eb8e9c020261cc8c58b312841dec32d287a0cc...66620152bf8c37ab592e9273fe87e567126801c2 --- pkgs/os-specific/linux/bpftune/default.nix | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/pkgs/os-specific/linux/bpftune/default.nix b/pkgs/os-specific/linux/bpftune/default.nix index 2cdbddc28593..da1bd1b384bb 100644 --- a/pkgs/os-specific/linux/bpftune/default.nix +++ b/pkgs/os-specific/linux/bpftune/default.nix @@ -12,13 +12,13 @@ stdenv.mkDerivation rec { pname = "bpftune"; - version = "unstable-2023-07-11"; + version = "unstable-2023-07-14"; src = fetchFromGitHub { owner = "oracle-samples"; repo = "bpftune"; - rev = "f2eb8e9c020261cc8c58b312841dec32d287a0cc"; - hash = "sha256-M5Zl4TzifQ3TkmCEBgKtv/kwichUY0PXQaQQThkTn2Q="; + rev = "66620152bf8c37ab592e9273fe87e567126801c2"; + hash = "sha256-U0O+F1DBF1xiaUKklwpZORBwF1T9wHM0SPQKUNaxKZk="; }; postPatch = '' @@ -62,6 +62,8 @@ stdenv.mkDerivation rec { inherit (nixosTests) bpftune; }; + enableParallelBuilding = true; + meta = with lib; { description = "BPF-based auto-tuning of Linux system parameters"; homepage = "https://github.com/oracle-samples/bpftune";