mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-27 07:14:52 +00:00
hyfetch: include pciutils as a dependency
fixes https://github.com/NixOS/nixpkgs/issues/361249
This commit is contained in:
parent
6af89f2653
commit
143952b7d3
@ -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