Merge pull request #4219 from yuannan/nix_gpsd
Added IPC fix and Nix GPS fix
This commit is contained in:
@ -46,4 +46,5 @@ class IPC {
|
||||
};
|
||||
|
||||
inline bool modulesReady = false;
|
||||
inline std::unique_ptr<IPC> gIPC;
|
||||
}; // namespace waybar::modules::hyprland
|
||||
|
@ -30,8 +30,12 @@ in
|
||||
# nixpkgs checks version, no need when building locally
|
||||
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.gpsd
|
||||
];
|
||||
|
||||
postUnpack = ''
|
||||
|
Reference in New Issue
Block a user