mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-22 20:25:59 +01:00
Nix: override wayland-protocols until merged
This commit is contained in:
parent
019d4900cb
commit
a4f38a07d7
1 changed files with 11 additions and 0 deletions
|
@ -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=";
|
||||
};
|
||||
});
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue