mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 07:46:09 +01:00
inxi: add pciutils (optional dependency)
This commit is contained in:
parent
b305e4dd7e
commit
a91459c929
1 changed files with 2 additions and 2 deletions
|
@ -3,7 +3,7 @@
|
|||
, withRecommends ? false # Install (almost) all recommended tools (see --recommends)
|
||||
, withRecommendedSystemPrograms ? withRecommends, util-linuxMinimal, dmidecode
|
||||
, file, hddtemp, iproute, ipmitool, usbutils, kmod, lm_sensors, smartmontools
|
||||
, binutils, tree, upower
|
||||
, binutils, tree, upower, pciutils
|
||||
, withRecommendedDisplayInformationPrograms ? withRecommends, glxinfo, xorg
|
||||
}:
|
||||
|
||||
|
@ -12,7 +12,7 @@ let
|
|||
"--prefix PATH ':' '${stdenv.lib.makeBinPath programs}'";
|
||||
recommendedSystemPrograms = lib.optionals withRecommendedSystemPrograms [
|
||||
util-linuxMinimal dmidecode file hddtemp iproute ipmitool usbutils kmod
|
||||
lm_sensors smartmontools binutils tree upower
|
||||
lm_sensors smartmontools binutils tree upower pciutils
|
||||
];
|
||||
recommendedDisplayInformationPrograms = lib.optionals
|
||||
withRecommendedDisplayInformationPrograms
|
||||
|
|
Loading…
Reference in a new issue