about summary refs log tree commit diff
path: root/pkgs/applications/window-managers/hyprwm/hyprland/wlroots.nix
blob: b2f4a52126dcf59155fa385aa0abc4974cf30f56 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ fetchFromGitHub
, wlroots
, enableXWayland ? true
}:
wlroots.overrideAttrs
  (old: {
    inherit enableXWayland;
    version = "0.18.0-dev";

    src = fetchFromGitHub {
      owner = "hyprwm";
      repo = "wlroots-hyprland";
      rev = "611a4f24cd2384378f6e500253983107c6656c64";
      hash = "sha256-vPeZCY+sdiGsz4fl3AVVujfyZyQBz6+vZdkUE4hQ+HI=";
    };

    patches = [ ]; # don't inherit old.patches

    pname = "${old.pname}-hyprland";
  })