Merge pull request #119621 from reedrw/neofetch-lscpi
neofetch: wrap with pciutils
This commit is contained in:
commit
a8f6369dda
@ -1,4 +1,4 @@
|
||||
{ lib, stdenvNoCC, fetchFromGitHub, bash }:
|
||||
{ lib, stdenvNoCC, fetchFromGitHub, bash, makeWrapper, pciutils }:
|
||||
|
||||
stdenvNoCC.mkDerivation rec {
|
||||
pname = "neofetch";
|
||||
@ -13,10 +13,16 @@ stdenvNoCC.mkDerivation rec {
|
||||
|
||||
strictDeps = true;
|
||||
buildInputs = [ bash ];
|
||||
nativeBuildInputs = [ makeWrapper ];
|
||||
postPatch = ''
|
||||
patchShebangs --host neofetch
|
||||
'';
|
||||
|
||||
postInstall = ''
|
||||
wrapProgram $out/bin/neofetch \
|
||||
--prefix PATH : ${lib.makeBinPath [ pciutils ]}
|
||||
'';
|
||||
|
||||
makeFlags = [
|
||||
"PREFIX=${placeholder "out"}"
|
||||
"SYSCONFDIR=${placeholder "out"}/etc"
|
||||
|
Loading…
Reference in New Issue
Block a user