mirror of
https://github.com/hyprwm/Hyprland.git
synced 2025-05-12 23:00:36 +01:00
nix/overlays: add w-p 1.43
This commit is contained in:
parent
2e540e4ec4
commit
3577a6be31
1 changed files with 13 additions and 0 deletions
|
@ -29,6 +29,7 @@ in {
|
||||||
inputs.hyprutils.overlays.default
|
inputs.hyprutils.overlays.default
|
||||||
inputs.hyprwayland-scanner.overlays.default
|
inputs.hyprwayland-scanner.overlays.default
|
||||||
self.overlays.udis86
|
self.overlays.udis86
|
||||||
|
self.overlays.wayland-protocols
|
||||||
|
|
||||||
# Hyprland packages themselves
|
# Hyprland packages themselves
|
||||||
(final: _prev: let
|
(final: _prev: let
|
||||||
|
@ -89,4 +90,16 @@ in {
|
||||||
patches = [];
|
patches = [];
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# TODO: remove when https://github.com/NixOS/nixpkgs/pull/397497 lands in master
|
||||||
|
wayland-protocols = final: prev: {
|
||||||
|
wayland-protocols = prev.wayland-protocols.overrideAttrs (self: super: {
|
||||||
|
version = "1.43";
|
||||||
|
|
||||||
|
src = final.fetchurl {
|
||||||
|
url = "https://gitlab.freedesktop.org/wayland/${self.pname}/-/releases/${self.version}/downloads/${self.pname}-${self.version}.tar.xz";
|
||||||
|
hash = "sha256-ujw0Jd0nxXtSkek9upe+EkeWAeALyrJNJkcZSMtkNlM=";
|
||||||
|
};
|
||||||
|
});
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue