cpupower: add which to nativeBuildInputs

linux >= 6.13 requires this.
This commit is contained in:
Stefan Junker 2024-12-05 11:03:46 +01:00
parent 55d15ad12a
commit bd3ea64559

View File

@ -1,10 +1,10 @@
{ lib, stdenv, buildPackages, kernel, pciutils, gettext }:
{ lib, stdenv, buildPackages, kernel, pciutils, gettext, which }:
stdenv.mkDerivation {
pname = "cpupower";
inherit (kernel) version src patches;
nativeBuildInputs = [ gettext ];
nativeBuildInputs = [ gettext which ];
buildInputs = [ pciutils ];
postPatch = ''