diff options
author | Mihai Fufezan <[email protected]> | 2024-04-22 00:38:28 +0300 |
---|---|---|
committer | Mihai Fufezan <[email protected]> | 2024-04-22 00:38:28 +0300 |
commit | a4f38a07d7578f0b06c09de7d04682e0aaddb12a (patch) | |
tree | b3cc716ea927c121e9be2c2a753c55dd562ffe97 /nix | |
parent | 019d4900cb132f2ff43fea49334712a12c282a14 (diff) | |
download | Hyprland-a4f38a07d7578f0b06c09de7d04682e0aaddb12a.tar.gz Hyprland-a4f38a07d7578f0b06c09de7d04682e0aaddb12a.zip |
Nix: override wayland-protocols until merged
Diffstat (limited to 'nix')
-rw-r--r-- | nix/overlays.nix | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/nix/overlays.nix b/nix/overlays.nix index fe5a5ed6..3a7dca52 100644 --- a/nix/overlays.nix +++ b/nix/overlays.nix @@ -27,6 +27,7 @@ in { inputs.hyprwayland-scanner.overlays.default self.overlays.wlroots-hyprland self.overlays.udis86 + self.overlays.wayland-protocols # Hyprland packages themselves (final: prev: let date = mkDate (self.lastModifiedDate or "19700101"); @@ -76,4 +77,14 @@ in { src = inputs.wlroots; }; }; + + wayland-protocols = final: prev: { + wayland-protocols = prev.wayland-protocols.overrideAttrs (self: super: { + version = "1.35"; + src = prev.fetchurl { + url = "https://gitlab.freedesktop.org/wayland/${super.pname}/-/releases/${self.version}/downloads/${super.pname}-${self.version}.tar.xz"; + hash = "sha256-N6JxaigTPcgZNBxWiinSHoy3ITDlwSah/PyfQsI9las="; + }; + }); + }; } |