diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2023-07-16 02:00:02 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2023-07-16 02:00:00 +0200 |
commit | d9a851433ad3e44a937cc98e200f6a17d5bd9063 (patch) | |
tree | a61e8afd96407ac53bac4c9cab3db8772a9d9330 | |
parent | c75022d65f1fa18b8c4839e50f915e8f4d4fe305 (diff) | |
download | guix-d9a851433ad3e44a937cc98e200f6a17d5bd9063.tar.gz |
gnu: hw-probe: Fix build.
* gnu/packages/hardware.scm (hw-probe)[arguments]: ‘lspci’ has moved to /bin.
-rw-r--r-- | gnu/packages/hardware.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/hardware.scm b/gnu/packages/hardware.scm index 8a16c1766d..cf39a97d58 100644 --- a/gnu/packages/hardware.scm +++ b/gnu/packages/hardware.scm @@ -250,7 +250,7 @@ sets, and tools to deal with register databases.") ;; their references. ;; TODO: package edid-decode and add "bin/edid-decode" below: (define need-progs (list "sbin/dmidecode" "sbin/smartctl" - "sbin/lspci" "bin/lsusb")) + "bin/lspci" "bin/lsusb")) (wrap-script hw-probe (list "PERL5LIB" 'prefix (list (getenv "PERL5LIB"))) (list "PATH" 'prefix |