mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-16 18:58:28 +00:00
hyfetch: include pciutils as a dependency (#361261)
This commit is contained in:
commit
d4b904d30d
@ -2,6 +2,7 @@
|
||||
lib,
|
||||
fetchFromGitHub,
|
||||
python3Packages,
|
||||
pciutils,
|
||||
}:
|
||||
python3Packages.buildPythonApplication rec {
|
||||
pname = "hyfetch";
|
||||
@ -30,6 +31,11 @@ python3Packages.buildPythonApplication rec {
|
||||
"hyfetch"
|
||||
];
|
||||
|
||||
postFixup = ''
|
||||
wrapProgram $out/bin/neowofetch \
|
||||
--prefix PATH : ${lib.makeBinPath [ pciutils ]}
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "neofetch with pride flags <3";
|
||||
longDescription = ''
|
||||
|
Loading…
Reference in New Issue
Block a user