cpupower: add which to nativeBuildInputs (#362044)

This commit is contained in:
Philip Taron
2024-12-05 20:38:30 -08:00
committed by GitHub
+2 -2
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 = ''