Guanran Wang
66d7539eab
https://github.com/swaywm/sway/pull/7226 is merged https://github.com/swaywm/sway/pull/6249 looks dead :( also simplified ./overlays
32 lines
567 B
Nix
32 lines
567 B
Nix
_final: prev: {
|
|
sway-unwrapped = prev.sway-unwrapped.overrideAttrs rec {
|
|
version = "1.9";
|
|
|
|
src = prev.fetchFromGitHub {
|
|
owner = "swaywm";
|
|
repo = "sway";
|
|
rev = version;
|
|
hash = "sha256-/6+iDkQfdLcL/pTJaqNc6QdP4SRVOYLjfOItEu/bZtg";
|
|
};
|
|
|
|
buildInputs = with prev; [
|
|
cairo
|
|
gdk-pixbuf
|
|
json_c
|
|
libGL
|
|
libdrm
|
|
libevdev
|
|
libinput
|
|
librsvg
|
|
libxkbcommon
|
|
pango
|
|
pcre2
|
|
wayland
|
|
wayland-protocols
|
|
wlroots_0_17
|
|
xorg.xcbutilwm
|
|
];
|
|
|
|
patches = [];
|
|
};
|
|
}
|