diff options
author | Mihai Fufezan <[email protected]> | 2024-07-16 22:23:37 +0300 |
---|---|---|
committer | GitHub <[email protected]> | 2024-07-16 21:23:37 +0200 |
commit | da956c8a979471282db6790f5fa5dcec320ec226 (patch) | |
tree | 36fcb6c4b7bcc4be68e69bf609ca86a8b51f6dd6 /nix | |
parent | bd526822deb9ed47c0b51b534817aa8541fff07b (diff) | |
download | Hyprland-da956c8a979471282db6790f5fa5dcec320ec226.tar.gz Hyprland-da956c8a979471282db6790f5fa5dcec320ec226.zip |
config: use hyprutils helper (#6891)
* flake.lock: update
nix/overlays: remove xwayland overlay (merged upstream)
* config: use hyprutils helper
* flake.lock: update
* CMake & Meson: update required versions
Diffstat (limited to 'nix')
-rw-r--r-- | nix/overlays.nix | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/nix/overlays.nix b/nix/overlays.nix index cc66e1b5..a4e1df37 100644 --- a/nix/overlays.nix +++ b/nix/overlays.nix @@ -25,7 +25,6 @@ in { inputs.hyprlang.overlays.default inputs.hyprutils.overlays.default inputs.hyprwayland-scanner.overlays.default - self.overlays.xwayland # Hyprland packages themselves (final: prev: let @@ -63,14 +62,4 @@ in { hyprland-extras = lib.composeManyExtensions [ inputs.xdph.overlays.xdg-desktop-portal-hyprland ]; - - # Patches XWayland's pkgconfig file to not include Cflags or includedir - # The above two variables trip up CMake and the build fails - xwayland = final: prev: { - xwayland = prev.xwayland.overrideAttrs (old: { - postInstall = '' - sed -i '/includedir/d' $out/lib/pkgconfig/xwayland.pc - ''; - }); - }; } |