Skip to content

Commit

Permalink
Nix: override wayland-protocols until merged
Browse files Browse the repository at this point in the history
  • Loading branch information
fufexan committed Apr 21, 2024
1 parent 019d490 commit a4f38a0
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions nix/overlays.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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");
Expand Down Expand Up @@ -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=";
};
});
};
}

0 comments on commit a4f38a0

Please sign in to comment.