mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-13 16:34:27 +00:00
cpupower: add which
to nativeBuildInputs
linux >= 6.13 requires this.
This commit is contained in:
parent
55d15ad12a
commit
bd3ea64559
@ -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 = ''
|
||||
|
Loading…
Reference in New Issue
Block a user