Merge pull request #4219 from yuannan/nix_gpsd

Added IPC fix and Nix GPS fix
This commit is contained in:
Alexis Rouillard
2025-06-22 13:22:19 +01:00
committed by GitHub
2 changed files with 6 additions and 1 deletions

View File

@ -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

View File

@ -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 = ''