added IPC fix and Nix GPS fix
This commit is contained in:
@ -46,4 +46,5 @@ class IPC {
|
|||||||
};
|
};
|
||||||
|
|
||||||
inline bool modulesReady = false;
|
inline bool modulesReady = false;
|
||||||
|
inline std::unique_ptr<IPC> gIPC;
|
||||||
}; // namespace waybar::modules::hyprland
|
}; // namespace waybar::modules::hyprland
|
||||||
|
@ -30,8 +30,12 @@ in
|
|||||||
# nixpkgs checks version, no need when building locally
|
# nixpkgs checks version, no need when building locally
|
||||||
nativeInstallCheckInputs = [ ];
|
nativeInstallCheckInputs = [ ];
|
||||||
|
|
||||||
buildInputs = (builtins.filter (p: p.pname != "wireplumber") oldAttrs.buildInputs) ++ [
|
buildInputs = (builtins.filter (p:
|
||||||
|
p.pname != "wireplumber" &&
|
||||||
|
p.pname != "gps"
|
||||||
|
) oldAttrs.buildInputs) ++ [
|
||||||
pkgs.wireplumber
|
pkgs.wireplumber
|
||||||
|
pkgs.gpsd
|
||||||
];
|
];
|
||||||
|
|
||||||
postUnpack = ''
|
postUnpack = ''
|
||||||
|
Reference in New Issue
Block a user