mirror of
https://github.com/hyprwm/hyprsysteminfo.git
synced 2024-11-24 05:46:00 +01:00
Nix: prefix PATH with pciutils
This commit is contained in:
parent
a0d09b1fd6
commit
e740e9ab01
1 changed files with 5 additions and 2 deletions
|
@ -10,7 +10,7 @@
|
|||
version ? "0",
|
||||
}: let
|
||||
inherit (lib.sources) cleanSource cleanSourceWith;
|
||||
inherit (lib.strings) hasSuffix;
|
||||
inherit (lib.strings) hasSuffix makeBinPath;
|
||||
in
|
||||
stdenv.mkDerivation {
|
||||
pname = "hyprsysteminfo";
|
||||
|
@ -33,12 +33,15 @@ in
|
|||
buildInputs = [
|
||||
hyprutils
|
||||
kdePackages.kirigami-addons
|
||||
pciutils
|
||||
qt6.qtbase
|
||||
qt6.qtsvg
|
||||
qt6.qtwayland
|
||||
];
|
||||
|
||||
preFixup = ''
|
||||
qtWrapperArgs+=(--prefix PATH : "${makeBinPath [pciutils]}")
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "A tiny qt6/qml application to display information about the running system";
|
||||
homepage = "https://github.com/hyprwm/hyprsysteminfo";
|
||||
|
|
Loading…
Reference in a new issue