22 stdenv.mkDerivation (finalAttrs: {
24 version = "0.17.3-unstable-2024-04-30";
26 src = fetchFromGitHub {
29 rev = "9d459df379efdcf20ea10906c48c79c506c32066";
30 hash = "sha256-Bn7mCVQPH/kH2WRsGPPGIGgvk0r894zZHCHl6BVmWVg=";
52 strictDeps = false; # why is it so hard?
54 env.NIX_CFLAGS_COMPILE = "-Wno-error=maybe-uninitialized";
57 wrapProgram $out/bin/wio \
58 --prefix PATH ":" "${lib.makeBinPath [ alacritty cage ]}"
62 providedSessions = [ "wio" ];
63 updateScript = unstableGitUpdater { };
67 homepage = "https://github.com/Rubo3/wio";
68 description = "Wayland compositor similar to Plan 9's rio";
70 Wio is a Wayland compositor for Linux and FreeBSD which has a similar look
71 and feel to plan9's rio.
73 license = with lib.licenses; [ bsd3 ];
75 maintainers = with lib.maintainers; [ AndersonTorres ];
76 inherit (wayland.meta) platforms;